summaryrefslogtreecommitdiff
path: root/src/lib/server.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-05-16 12:32:04 +0100
committerCarl Hetherington <cth@carlh.net>2014-05-16 12:32:04 +0100
commit308488324dbc4d8b709d3fb1dc9fee0479346c21 (patch)
tree446989a0bea3db683e5200da89c955140b175682 /src/lib/server.cc
parentcfdd68eb5fb0ef8423e860103ad4e5510994f1da (diff)
parent362ed9ee4f73bee21b3ef8d3b449bb8e8877f501 (diff)
Merge master.
Diffstat (limited to 'src/lib/server.cc')
-rw-r--r--src/lib/server.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/server.cc b/src/lib/server.cc
index bf7541c33..6bcff7e6e 100644
--- a/src/lib/server.cc
+++ b/src/lib/server.cc
@@ -27,9 +27,9 @@
#include <sstream>
#include <iostream>
#include <boost/algorithm/string.hpp>
-#include <boost/lexical_cast.hpp>
#include <boost/scoped_array.hpp>
#include <libcxml/cxml.h>
+#include <dcp/raw_convert.h>
#include "server.h"
#include "util.h"
#include "scaler.h"
@@ -56,8 +56,8 @@ using boost::thread;
using boost::bind;
using boost::scoped_array;
using boost::optional;
-using boost::lexical_cast;
using dcp::Size;
+using dcp::raw_convert;
Server::Server (shared_ptr<Log> log, bool verbose)
: _log (log)
@@ -246,7 +246,7 @@ Server::broadcast_received ()
/* Reply to the client saying what we can do */
xmlpp::Document doc;
xmlpp::Element* root = doc.create_root_node ("ServerAvailable");
- root->add_child("Threads")->add_child_text (lexical_cast<string> (_worker_threads.size ()));
+ root->add_child("Threads")->add_child_text (raw_convert<string> (_worker_threads.size ()));
stringstream xml;
doc.write_to_stream (xml, "UTF-8");