Changeset c681afb in git for misc/auxiliary.h.in


Ignore:
Timestamp:
Jun 17, 2010, 6:56:17 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'd0474371d8c5d8068ab70bfb42719c97936b18a6')
Children:
21dc6a477ee96c0d6c68bd91de4b586529805495
Parents:
ef379084a33f6e92bf855d8d1dbeb7945e9a3f84
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2010-06-17 18:56:17+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:12+01:00
Message:
Added FORCEINLINE
File:
1 edited

Legend:

Unmodified
Added
Removed
  • misc/auxiliary.h.in

    ref3790 rc681afb  
    281281/* end of debugging option (ifndef NDEBUG) */
    282282
     283
     284
     285#ifdef _DEBUG
     286#      define FORCEINLINE inline
     287#else
     288#ifdef NDEBUG
     289#if   defined(_MSC_VER)
     290#      define FORCEINLINE __forceinline
     291#elif defined(__GNUC__) && __GNUC__ > 3
     292#      define FORCEINLINE inline __attribute__ ((always_inline))
     293#else
     294#      define FORCEINLINE inline
     295#endif
     296#else
     297#      define FORCEINLINE inline
     298#endif
     299/* NDEBUG */
     300#endif
     301/* _DEBUG */
     302
     303
     304
    283305#endif
    284306/* MISC_AUXILIARY_H */
Note: See TracChangeset for help on using the changeset viewer.