]> git.mxchange.org Git - simgear.git/commitdiff
Fix a std:: namespace issue on Windows.
authorJames Turner <zakalawe@mac.com>
Sun, 13 Nov 2011 21:27:15 +0000 (21:27 +0000)
committerJames Turner <zakalawe@mac.com>
Sun, 13 Nov 2011 21:27:15 +0000 (21:27 +0000)
simgear/sound/soundmgr_openal.cxx

index f0c08eb2c7c7c76631eb8bc49c2691e758afc0b3..efe751b66569c0ecb49112dc29511d1ea62c3826 100644 (file)
@@ -605,7 +605,7 @@ bool SGSoundMgr::load(string &samplepath, void **dbuf, int *fmt,
             // occurs: e.g. -43 on Mac when file is not found.
             // In this case, alGetString() sets 'Invalid Enum' error, so
             // showing with the original error number is helpful.
-            stringstream ss;
+            std::stringstream ss;
             ss << alGetString(alGetError()) << "(" << error << ")";
             msg.append(ss.str());
         }