summaryrefslogtreecommitdiff
path: root/src/lib/update.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-04-16 23:10:28 +0100
committerCarl Hetherington <cth@carlh.net>2015-04-16 23:10:28 +0100
commit769c71b5c3e050ccfc1c13771d24328fbf76a495 (patch)
treef75d5c5c953884395b2e59358e2c7faff5d5ba4b /src/lib/update.cc
parent91bd51ff82e99113860570b519459303802bd98f (diff)
Add our own raw_convert that uses SafeStringStream.
Diffstat (limited to 'src/lib/update.cc')
-rw-r--r--src/lib/update.cc11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/lib/update.cc b/src/lib/update.cc
index b41d8bb66..a05df8ef3 100644
--- a/src/lib/update.cc
+++ b/src/lib/update.cc
@@ -17,17 +17,17 @@
*/
-#include <string>
-#include <boost/algorithm/string.hpp>
-#include <curl/curl.h>
-#include <libcxml/cxml.h>
-#include <dcp/raw_convert.h>
#include "update.h"
#include "version.h"
#include "ui_signaller.h"
#include "safe_stringstream.h"
#include "config.h"
#include "util.h"
+#include "raw_convert.h"
+#include <libcxml/cxml.h>
+#include <curl/curl.h>
+#include <boost/algorithm/string.hpp>
+#include <string>
#define BUFFER_SIZE 1024
@@ -35,7 +35,6 @@ using std::cout;
using std::min;
using std::string;
using std::vector;
-using dcp::raw_convert;
using boost::is_any_of;
using boost::ends_with;