Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
[dcpomatic.git] / src / lib / encoded_log_entry.cc
index 3409319ac311270dce98f1086cf3ca714d59ca29..84c7a6ca6ba61e252bc731173988ae20b885573b 100644 (file)
@@ -19,7 +19,7 @@
 */
 
 #include "encoded_log_entry.h"
-#include "safe_stringstream.h"
+#include <locked_sstream.h>
 
 using std::string;
 using std::fixed;
@@ -38,7 +38,7 @@ EncodedLogEntry::EncodedLogEntry (int frame, string ip, double receive, double e
 string
 EncodedLogEntry::message () const
 {
-       SafeStringStream m;
+       locked_stringstream m;
        m.precision (2);
        m << fixed
          << "Encoded frame " << _frame << " from " << _ip << ": "