]> git.mxchange.org Git - simgear.git/commitdiff
Remove leading _ from a couple defines.
authorcurt <curt>
Fri, 16 Oct 1998 00:50:56 +0000 (00:50 +0000)
committercurt <curt>
Fri, 16 Oct 1998 00:50:56 +0000 (00:50 +0000)
Misc/fgstream.hxx
Misc/strutils.hxx
Misc/zfstream.hxx

index 1e79e5b3fa6eff64a82859308496c514211b0353..4925d95582c6e579681efc796fea83c0777cb34e 100644 (file)
@@ -35,7 +35,7 @@
 #include <string>
 
 #include "Include/fg_stl_config.h"
-_FG_USING_NAMESPACE(std);
+FG_USING_NAMESPACE(std);
 
 #include "zfstream.hxx"
 
@@ -105,6 +105,9 @@ istream& skipcomment( istream& in );
 #endif /* _FGSTREAM_HXX */
 
 // $Log$
+// Revision 1.4  1998/10/16 00:50:56  curt
+// Remove leading _ from a couple defines.
+//
 // Revision 1.3  1998/10/13 00:10:06  curt
 // More portability changes to help with windoze compilation problems.
 //
index 7acd7f9b4bbd266da00fe014284d079881a68355..2cf7c53e970e317d1d6205e3f7bf1cbcf6f38a0c 100644 (file)
@@ -29,7 +29,7 @@
 #include <stdlib.h>
 
 #include "Include/fg_stl_config.h"
-_FG_USING_NAMESPACE(std);
+FG_USING_NAMESPACE(std);
 
 // Default characters to remove.
 extern const string whitespace;
@@ -60,6 +60,9 @@ atoi( const string& str )
 #endif // STRUTILS_H
 
 // $Log$
+// Revision 1.3  1998/10/16 00:50:57  curt
+// Remove leading _ from a couple defines.
+//
 // Revision 1.2  1998/10/13 00:10:07  curt
 // More portability changes to help with windoze compilation problems.
 //
index a5b02013c9b4743545a0b187830350ce883e119e..52eec8ece43030df46b8e7a714ee4b92d14e745c 100644 (file)
@@ -93,7 +93,7 @@ public:
 };
 
 template<class T> class gzomanip {
-    friend gzofstream &operator << _FG_NULL_TMPL_ARGS (gzofstream &, const gzomanip<T> &);
+    friend gzofstream &operator << FG_NULL_TMPL_ARGS (gzofstream &, const gzomanip<T> &);
 public:
   gzomanip(gzofstream &(*f)(gzofstream &, T), T v) : func(f), val(v) { }
 private: