Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
[dcpomatic.git] / src / lib / log_entry.cc
index 50796b69aeafc2fad4219a82ee56f737ee98fdc4..53605c389546e04f139449348e932188241fab79 100644 (file)
@@ -19,7 +19,7 @@
 */
 
 #include "log_entry.h"
-#include "safe_stringstream.h"
+#include <locked_sstream.h>
 
 #include "i18n.h"
 
@@ -42,7 +42,7 @@ LogEntry::LogEntry (int type)
 string
 LogEntry::get () const
 {
-       SafeStringStream s;
+       locked_stringstream s;
        if (_type & TYPE_TIMING) {
                s << _time.tv_sec << ":" << _time.tv_usec << " ";
        } else {