Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
[dcpomatic.git] / src / lib / content.cc
index 95713d323c47b032ab17d7fc132699ca7ba3145b..a56573ed28536503e4099a7bdd88c44ebb23604f 100644 (file)
 #include "content_factory.h"
 #include "exceptions.h"
 #include "film.h"
-#include "safe_stringstream.h"
 #include "job.h"
 #include "compose.hpp"
 #include "raw_convert.h"
+#include <locked_sstream.h>
 #include <libcxml/cxml.h>
 #include <libxml++/libxml++.h>
 #include <boost/thread/mutex.hpp>
@@ -254,7 +254,7 @@ Content::length_after_trim () const
 string
 Content::identifier () const
 {
-       SafeStringStream s;
+       locked_stringstream s;
 
        s << Content::digest()
          << "_" << position().get()