diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-07-22 10:06:10 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-07-22 10:06:10 +0100 |
| commit | 422be0eece2bf6ee80db1d3c21553cd82efff789 (patch) | |
| tree | 57604c446361be99eb092f35e703445260ada84a /src/lib/image_content.cc | |
| parent | e34db1b3cdb5bce5ddcb112ee03664a4e463032a (diff) | |
Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
Diffstat (limited to 'src/lib/image_content.cc')
| -rw-r--r-- | src/lib/image_content.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/image_content.cc b/src/lib/image_content.cc index d4e736771..08b9fd6ae 100644 --- a/src/lib/image_content.cc +++ b/src/lib/image_content.cc @@ -26,8 +26,8 @@ #include "job.h" #include "frame_rate_change.h" #include "exceptions.h" -#include "safe_stringstream.h" #include "image_filename_sorter.h" +#include <locked_sstream.h> #include <libcxml/cxml.h> #include <libxml++/libxml++.h> #include <boost/foreach.hpp> @@ -136,7 +136,7 @@ ImageContent::full_length () const string ImageContent::identifier () const { - SafeStringStream s; + locked_stringstream s; s << Content::identifier(); s << "_" << video->identifier (); s << "_" << video->length(); |
