summaryrefslogtreecommitdiffstats
path: root/host/lib/utils/warning.cpp
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-08-17 17:25:03 -0700
committerJosh Blum <josh@joshknows.com>2010-08-17 17:25:03 -0700
commit864de41af536de1a4e86aa4542e2cfeb21f2d309 (patch)
tree259f582fca4b73ea5db4811bf2423294b02477a3 /host/lib/utils/warning.cpp
parent0541029e4ecd06e840966b4005af316b92eeb9e5 (diff)
parent7d110e73e6b0651f73e8e5b165244f59e66fed87 (diff)
downloaduhd-864de41af536de1a4e86aa4542e2cfeb21f2d309.tar.gz
uhd-864de41af536de1a4e86aa4542e2cfeb21f2d309.tar.bz2
uhd-864de41af536de1a4e86aa4542e2cfeb21f2d309.zip
Merge branch 'next'
Diffstat (limited to 'host/lib/utils/warning.cpp')
-rw-r--r--host/lib/utils/warning.cpp8
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;
}
}