Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
[dcpomatic.git] / src / lib / dcpomatic_time.h
index c538357ccbe12c57093fb59bbc91758f8e1a1138..e6ca493b2bb921e58fbe0fb5c7e7f3c23c9aaf4c 100644 (file)
@@ -26,8 +26,8 @@
 #define DCPOMATIC_TIME_H
 
 #include "frame_rate_change.h"
-#include "safe_stringstream.h"
 #include "dcpomatic_assert.h"
+#include <locked_sstream.h>
 #include <stdint.h>
 #include <cmath>
 #include <ostream>
@@ -181,7 +181,7 @@ public:
                int f;
                split (r, h, m, s, f);
 
-               SafeStringStream o;
+               locked_stringstream o;
                o.width (2);
                o.fill ('0');
                o << std::setw(2) << std::setfill('0') << h << ":"