Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
[dcpomatic.git] / src / lib / raw_convert.h
index 46b7d0dff846a417c2847700bbe7c8adf97831fe..92d8e3d32a979dd290dd992a5f9d27a45794854f 100644 (file)
@@ -21,7 +21,7 @@
 #ifndef DCPOMATIC_RAW_CONVERT_H
 #define DCPOMATIC_RAW_CONVERT_H
 
-#include "safe_stringstream.h"
+#include <locked_sstream.h>
 #include <iomanip>
 
 /** A sort-of version of boost::lexical_cast that does uses the "C"
@@ -31,7 +31,7 @@ template <typename P, typename Q>
 P
 raw_convert (Q v, int precision = 16)
 {
-       SafeStringStream s;
+       locked_stringstream s;
        s.imbue (std::locale::classic ());
        s << std::setprecision (precision);
        s << v;