]> git.mxchange.org Git - simgear.git/blob - simgear/compatibility/strstream
Don't use floats where ints are more appropriate
[simgear.git] / simgear / compatibility / strstream
1
2 #ifndef __SG_STRSTREAM
3 #define __SG_STRSTREAM 1
4
5 # include <strstream.h>
6
7 # if defined(sgi) && !defined(__GNUC__)
8
9   namespace std {
10     using ::ends;
11
12     using ::strstream;
13     using ::istrstream;
14     using ::ostrstream;
15   };
16
17 # endif
18
19 #endif // !__SG_STRSTREAM
20