diff options
author | Josh Blum <josh@joshknows.com> | 2010-08-12 10:08:17 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-08-12 10:08:17 -0700 |
commit | 805d4a0cff00fb4e0071bb300436bb7eefb8fb16 (patch) | |
tree | d3e076ecff7e6ce7899b7cb8da0e932ee5ca8236 /host/lib/utils/warning.cpp | |
parent | ef6953024f1075a729e85f2511c75de337879888 (diff) | |
download | uhd-805d4a0cff00fb4e0071bb300436bb7eefb8fb16.tar.gz uhd-805d4a0cff00fb4e0071bb300436bb7eefb8fb16.tar.bz2 uhd-805d4a0cff00fb4e0071bb300436bb7eefb8fb16.zip |
uhd: made split string utility function
Diffstat (limited to 'host/lib/utils/warning.cpp')
-rw-r--r-- | host/lib/utils/warning.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/host/lib/utils/warning.cpp b/host/lib/utils/warning.cpp index ae4d4c7aa..8a7d35a23 100644 --- a/host/lib/utils/warning.cpp +++ b/host/lib/utils/warning.cpp @@ -16,7 +16,7 @@ // #include <uhd/utils/warning.hpp> -#include <boost/algorithm/string.hpp> +#include <uhd/utils/algorithm.hpp> #include <boost/foreach.hpp> #include <iostream> #include <vector> @@ -24,13 +24,9 @@ using namespace uhd; void uhd::print_warning(const std::string &msg){ - //extract the message lines - std::vector<std::string> lines; - boost::split(lines, msg, boost::is_any_of("\n")); - //print the warning message std::cerr << std::endl << "Warning:" << std::endl; - BOOST_FOREACH(const std::string &line, lines){ + BOOST_FOREACH(const std::string &line, std::split_string(msg, "\n")){ std::cerr << " " << line << std::endl; } } |