Skip to content
Snippets Groups Projects
Commit ed70566d authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #9849: added missing sstream header

parent 983beff3
No related branches found
No related tags found
No related merge requests found
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
#include "audiorecorder.h" #include "audiorecorder.h"
#include "mainbuffer.h" #include "mainbuffer.h"
#include <sstream>
#include <cassert> #include <cassert>
int AudioRecorder::count_ = 0; int AudioRecorder::count_ = 0;
...@@ -45,7 +46,7 @@ AudioRecorder::AudioRecorder(AudioRecord *arec, MainBuffer *mb) : ost::Thread() ...@@ -45,7 +46,7 @@ AudioRecorder::AudioRecorder(AudioRecord *arec, MainBuffer *mb) : ost::Thread()
// convert count into string // convert count into string
std::string s; std::string s;
std::stringstream out; std::ostringstream out;
out << count_; out << count_;
s = out.str(); s = out.str();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment