diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-11-27 18:42:07 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-11-27 18:42:07 +0000 |
| commit | 18c3b488dff343a9b287d8d0fd68143b792ec75e (patch) | |
| tree | 8beb9ca8400a68a8406b52737f90cafd4eafbc14 /src/lib/video_content.cc | |
| parent | 2a02b09b9df160d6c83874d0ac2ae5f16bd50bb5 (diff) | |
Fix some stringstreams that had crept in.
Diffstat (limited to 'src/lib/video_content.cc')
| -rw-r--r-- | src/lib/video_content.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index 78b320034..7321fc7c5 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -55,7 +55,6 @@ using std::cout; using std::vector; using std::min; using std::max; -using std::stringstream; using std::fixed; using std::setprecision; using std::list; @@ -512,7 +511,7 @@ string VideoContent::processing_description () const { /* stringstream is OK here as this string is just for presentation to the user */ - stringstream d; + SafeStringStream d; if (video_size().width && video_size().height) { d << String::compose ( |
