X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fserver.cc;h=6bcff7e6e93db1204cfc2d2ec73c7179a99b55ce;hb=308488324dbc4d8b709d3fb1dc9fee0479346c21;hp=bf7541c3379f1f294f735f4c130b06994b0311d8;hpb=cc3900735839ff4b0da0c046b5c606c440ba917a;p=dcpomatic.git 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 #include #include -#include #include #include +#include #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, 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 (_worker_threads.size ())); + root->add_child("Threads")->add_child_text (raw_convert (_worker_threads.size ())); stringstream xml; doc.write_to_stream (xml, "UTF-8");