Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8879 for code/trunk


Ignore:
Timestamp:
Oct 8, 2011, 12:57:54 PM (13 years ago)
Author:
baermatt
Message:

Added 'ull' to some OutputContextMasks, because of an error with LLVM GCC 4.2 (Integer constant is too large for 'long' type).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/libraries/util/output/OutputDefinitions.h

    r8858 r8879  
    117117    namespace context
    118118    {
    119         static const OutputContextMask all       = 0xFFFFFFFFFFFFFFFF; ///< Context mask, all bits set to 1
    120         static const OutputContextMask none      = 0x0000000000000000; ///< Context mask, all bits set to 0
     119        static const OutputContextMask all       = 0xFFFFFFFFFFFFFFFFull; ///< Context mask, all bits set to 1
     120        static const OutputContextMask none      = 0x0000000000000000ull; ///< Context mask, all bits set to 0
    121121
    122122        static const OutputContextSubID no_subcontext = 0; ///< Used as ID for contexts which are not sub-contexts
Note: See TracChangeset for help on using the changeset viewer.