]> git.mxchange.org Git - simgear.git/commitdiff
Include <algorithm> and <stdio.hxx> to fix compilation errors on some
authordavid <david>
Tue, 19 Mar 2002 18:17:36 +0000 (18:17 +0000)
committerdavid <david>
Tue, 19 Mar 2002 18:17:36 +0000 (18:17 +0000)
platforms (I should have done this anyway).

simgear/misc/props.cxx

index d9a861e484a51362e919ece7b6e9a48326cf64b2..8ff66ca01231cac8c870a314a69e3f330e987170 100644 (file)
@@ -19,10 +19,13 @@ using std::sort;
 
 #include <simgear/compiler.h>
 #include <simgear/debug/logstream.hxx>
+
 SG_USING_STD(sort);
 
 #endif
 
+#include <algorithm>
+#include <stdio.h>
 #include <string.h>