comparison src/vamp-sdk/RealTime.cpp @ 479:ea8e56f0796a

Fix inadequate #if guard for non-gcc builds
author Chris Cannam
date Mon, 09 Jan 2017 16:31:58 +0000
parents 15348e89c1d7
children 8ede825a54f6
comparison
equal deleted inserted replaced
478:0eebd22a081a 479:ea8e56f0796a
41 Relicensed by the author as detailed above. 41 Relicensed by the author as detailed above.
42 */ 42 */
43 43
44 #include <iostream> 44 #include <iostream>
45 45
46 #if (__GNUC__ < 3) 46 #if (defined(__GNUC__)) && (__GNUC__ < 3)
47 #include <strstream> 47 #include <strstream>
48 #define stringstream strstream 48 #define stringstream strstream
49 #else 49 #else
50 #include <sstream> 50 #include <sstream>
51 #endif 51 #endif