]> git.sesse.net Git - casparcg/blobdiff - core/mixer/mixer.cpp
Remove most of boost::lexical_cast.
[casparcg] / core / mixer / mixer.cpp
index c5b5e1fb31f71fad85dc306bd3c24080d909dcab..30b64b9d48b0fed139bd6bd6fc5e79cea8fabf6a 100644 (file)
@@ -43,7 +43,6 @@
 #include <core/video_format.h>
 
 #include <boost/property_tree/ptree.hpp>
-#include <boost/lexical_cast.hpp>
 
 #include <tbb/concurrent_queue.h>
 #include <tbb/spin_mutex.h>
@@ -65,7 +64,7 @@ struct mixer::impl : boost::noncopyable
 
        bool                                                            straighten_alpha_       = false;
                        
-       executor                                                        executor_                       { L"mixer " + boost::lexical_cast<std::wstring>(channel_index_) };
+       executor                                                        executor_                       { L"mixer " + std::to_wstring(channel_index_) };
 
 public:
        impl(int channel_index, spl::shared_ptr<diagnostics::graph> graph, spl::shared_ptr<image_mixer> image_mixer)