summaryrefslogtreecommitdiff
path: root/src/lib/video_content_scale.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-07-22 10:06:10 +0100
committerCarl Hetherington <cth@carlh.net>2016-07-22 10:06:10 +0100
commit422be0eece2bf6ee80db1d3c21553cd82efff789 (patch)
tree57604c446361be99eb092f35e703445260ada84a /src/lib/video_content_scale.cc
parente34db1b3cdb5bce5ddcb112ee03664a4e463032a (diff)
Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
Diffstat (limited to 'src/lib/video_content_scale.cc')
-rw-r--r--src/lib/video_content_scale.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/video_content_scale.cc b/src/lib/video_content_scale.cc
index a1673d3de..47ceab5d1 100644
--- a/src/lib/video_content_scale.cc
+++ b/src/lib/video_content_scale.cc
@@ -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 ();