[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

#ifdefs



Henrik,

We're having a small problem with an #if in gc_const.h.  You use the 
following:

        #if __SUNPRO_CC < 0x500
                typedef int bool;
                #define true 1
                #define false 0
                #define explicit
                #define mutable
                #define std
        #endif // __SUNPRO_CC < 0x500

If we use the 5.0 compiler in -compat mode for compatibility with 4.x code 
(which the client code seems to be forced to do until all the libraries it 
uses--even the commercial ones--are rebuilt), this check fails to do what we 
need.