From ed70566de87e1c0a03dedac7b606b2c400c447af Mon Sep 17 00:00:00 2001 From: Tristan Matthews <tristan.matthews@savoirfairelinux.com> Date: Tue, 17 Apr 2012 16:43:27 -0400 Subject: [PATCH] * #9849: added missing sstream header --- daemon/src/audio/audiorecorder.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/daemon/src/audio/audiorecorder.cpp b/daemon/src/audio/audiorecorder.cpp index c2a062bc49..669e2ed27d 100644 --- a/daemon/src/audio/audiorecorder.cpp +++ b/daemon/src/audio/audiorecorder.cpp @@ -30,6 +30,7 @@ #include "audiorecorder.h" #include "mainbuffer.h" +#include <sstream> #include <cassert> int AudioRecorder::count_ = 0; @@ -45,7 +46,7 @@ AudioRecorder::AudioRecorder(AudioRecord *arec, MainBuffer *mb) : ost::Thread() // convert count into string std::string s; - std::stringstream out; + std::ostringstream out; out << count_; s = out.str(); -- GitLab