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 @@
#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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment