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/encoded_log_entry.cc | |
| parent | e34db1b3cdb5bce5ddcb112ee03664a4e463032a (diff) | |
Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
Diffstat (limited to 'src/lib/encoded_log_entry.cc')
| -rw-r--r-- | src/lib/encoded_log_entry.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/encoded_log_entry.cc b/src/lib/encoded_log_entry.cc index 3409319ac..84c7a6ca6 100644 --- a/src/lib/encoded_log_entry.cc +++ b/src/lib/encoded_log_entry.cc @@ -19,7 +19,7 @@ */ #include "encoded_log_entry.h" -#include "safe_stringstream.h" +#include <locked_sstream.h> using std::string; using std::fixed; @@ -38,7 +38,7 @@ EncodedLogEntry::EncodedLogEntry (int frame, string ip, double receive, double e string EncodedLogEntry::message () const { - SafeStringStream m; + locked_stringstream m; m.precision (2); m << fixed << "Encoded frame " << _frame << " from " << _ip << ": " |
