diff options
author | Michele Calgaro <[email protected]> | 2018-08-16 21:56:43 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-08-16 21:56:43 +0900 |
commit | 8c0cfbf6610b1a3a70ee1d6098a9c7dacfba5445 (patch) | |
tree | 71225faf89542b685cf6ce4abe44a19c62051210 /src/base/Studio.cpp | |
parent | 95fa0b3590f4be2e90efa67f9a9358cb57e9bdb0 (diff) | |
download | rosegarden-8c0cfbf6610b1a3a70ee1d6098a9c7dacfba5445.tar.gz rosegarden-8c0cfbf6610b1a3a70ee1d6098a9c7dacfba5445.zip |
Switched from strstream to sstream.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/base/Studio.cpp')
-rw-r--r-- | src/base/Studio.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/base/Studio.cpp b/src/base/Studio.cpp index 89e7cc1..257aa64 100644 --- a/src/base/Studio.cpp +++ b/src/base/Studio.cpp @@ -20,6 +20,7 @@ */ #include <iostream> +#include <sstream> #include "Studio.h" #include "MidiDevice.h" @@ -30,12 +31,6 @@ #include "Track.h" #include "Composition.h" -#if (__GNUC__ < 3) -#include <strstream> -#define stringstream strstream -#else -#include <sstream> -#endif using std::cerr; using std::endl; |