hey,

We attempted to build OpenSG and wanted to submit a small change to the code 
that we needed to do to be successful. In file: include/OpenSG/OSGNamedPool.h,

we changed:

template <> inline
void NamedPool<BitVector>::dumpValue(const BitVector &val)
{
#if !defined(__GCCXML__)
    fprintf(stderr, "0x%016" PRIx64 , val);
#endif
}


to:

template <> inline
void NamedPool<BitVector>::dumpValue(const BitVector &val)
{
#if !defined(__GCCXML__) && defined(PRIx64)
    fprintf(stderr, "0x%016" PRIx64 , val);
#endif
}



regards;
Patrick

------------------------------------------------------------------------------
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk
_______________________________________________
Opensg-users mailing list
Opensg-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/opensg-users

Reply via email to