Commit d61137ba authored by Dominik Charousset's avatar Dominik Charousset

Remove boost header

parent 9ede3f3a
...@@ -79,7 +79,7 @@ std::string get_root_uuid() { ...@@ -79,7 +79,7 @@ std::string get_root_uuid() {
#include <unistd.h> #include <unistd.h>
#include <iostream> #include <iostream>
#include <boost/algorithm/string.hpp> #include "cppa/string_algorithms.hpp"
using std::vector; using std::vector;
using std::string; using std::string;
...@@ -97,7 +97,6 @@ struct columns_iterator ...@@ -97,7 +97,6 @@ struct columns_iterator
if (!std::getline(*fs, line)) if (!std::getline(*fs, line))
fs = nullptr; fs = nullptr;
else { else {
using namespace boost::algorithm;
split(cols, line, is_any_of(" "), token_compress_on); split(cols, line, is_any_of(" "), token_compress_on);
} }
return *this; return *this;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment