]> git.mxchange.org Git - simgear.git/blobdiff - simgear/io/socktest.cxx
remove CopyPolicy from ModelRegistry
[simgear.git] / simgear / io / socktest.cxx
index 2586b42cd51cbfd5f823bf21a40a2fe76d387131..83adfd2742cc22be9a5fbd2628d62b051c298323 100644 (file)
@@ -1,7 +1,11 @@
+#ifdef HAVE_CONFIG_H
+#  include <simgear_config.h>
+#endif
+
 #include <simgear/compiler.h>
 
 #include <unistd.h>
-#include STL_IOSTREAM
+#include <iostream>
 
 #include "sg_socket.hxx"
 #include "lowlevel.hxx"
@@ -10,8 +14,8 @@ static const int sgEndianTest = 1;
 #define sgIsLittleEndian (*((char *) &sgEndianTest ) != 0)
 #define sgIsBigEndian    (*((char *) &sgEndianTest ) == 0)
 
-SG_USING_STD(cout);
-SG_USING_STD(endl);
+using std::cout;
+using std::endl;
 
 
 int main() {