1
0
Fork 0

Remove leading _ from a couple defines.

This commit is contained in:
curt 1998-10-16 00:50:56 +00:00
parent c5adb85741
commit 8470a9eda6
3 changed files with 9 additions and 3 deletions

View 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.
//

View 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.
//

View 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: