From 422be0eece2bf6ee80db1d3c21553cd82efff789 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 22 Jul 2016 10:06:10 +0100 Subject: Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream. --- src/lib/raw_convert.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/raw_convert.h') diff --git a/src/lib/raw_convert.h b/src/lib/raw_convert.h index 46b7d0dff..92d8e3d32 100644 --- a/src/lib/raw_convert.h +++ b/src/lib/raw_convert.h @@ -21,7 +21,7 @@ #ifndef DCPOMATIC_RAW_CONVERT_H #define DCPOMATIC_RAW_CONVERT_H -#include "safe_stringstream.h" +#include #include /** A sort-of version of boost::lexical_cast that does uses the "C" @@ -31,7 +31,7 @@ template P raw_convert (Q v, int precision = 16) { - SafeStringStream s; + locked_stringstream s; s.imbue (std::locale::classic ()); s << std::setprecision (precision); s << v; -- cgit v1.2.3