RFA: src/Utilities/Inform.h: Fix Preprocessor Expression
Jeffrey Oldham
oldham at codesourcery.com
Thu Mar 22 16:44:09 UTC 2001
Allan's suggested improvement was lost in the flurry of responses to
my previous Pooma patches.
OK to commit?
2001-03-22 Jeffrey Oldham <oldham at codesourcery.com>
* Inform.h: Modify preprocessing constant expression to be more
robust.
Thanks,
Jeffrey D. Oldham
oldham at codesourcery.com
-------------- next part --------------
Index: Inform.h
===================================================================
RCS file: /home/pooma/Repository/r2/src/Utilities/Inform.h,v
retrieving revision 1.28
diff -c -p -r1.28 Inform.h
*** Inform.h 2001/03/21 00:56:09 1.28
--- Inform.h 2001/03/22 16:40:14
*************** public:
*** 275,281 ****
void print() { flush(); }
void output() { flush(); }
! #if (defined(__MWERKS__) && __MWERKS__ >= 0x2301) || __GLIBCPP__ >= 20001129
typedef std::ios_base::fmtflags FmtFlags_t;
#else
typedef long FmtFlags_t;
--- 275,282 ----
void print() { flush(); }
void output() { flush(); }
! #if (defined(__MWERKS__) && __MWERKS__ >= 0x2301) \
! || (defined(__GLIBCPP__) && __GLIBCPP__ >= 20001129)
typedef std::ios_base::fmtflags FmtFlags_t;
#else
typedef long FmtFlags_t;
More information about the pooma-dev
mailing list