Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
[dcpomatic.git] / src / lib / video_content_scale.cc
index a1673d3deafc58ae84950eec58314783eaf14ac4..47ceab5d1f2f4516f21b071081e4d298abf2f419 100644 (file)
@@ -21,8 +21,8 @@
 #include "video_content_scale.h"
 #include "video_content.h"
 #include "ratio.h"
-#include "safe_stringstream.h"
 #include "util.h"
+#include <locked_sstream.h>
 #include <libcxml/cxml.h>
 #include <libxml++/libxml++.h>
 #include <boost/optional.hpp>
@@ -85,7 +85,7 @@ VideoContentScale::as_xml (xmlpp::Node* node) const
 string
 VideoContentScale::id () const
 {
-       SafeStringStream s;
+       locked_stringstream s;
 
        if (_ratio) {
                s << _ratio->id ();