From 455475575bcfa30aa60a377235bfaf2fd7bc2da7 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 22 Jul 2016 09:20:58 +0100 Subject: Use locked_sstream. Replace once parse_stream with parse_memory. --- src/dcp_time.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/dcp_time.cc') diff --git a/src/dcp_time.cc b/src/dcp_time.cc index 401abb3c..526c784c 100644 --- a/src/dcp_time.cc +++ b/src/dcp_time.cc @@ -330,7 +330,7 @@ dcp::operator/ (Time a, Time const & b) string Time::as_string (Standard standard) const { - stringstream str; + locked_stringstream str; str << setw(2) << setfill('0') << h << ":" << setw(2) << setfill('0') << m << ":" << setw(2) << setfill('0') << s << ":"; -- cgit v1.2.3