Changeset bc085c in git
- Timestamp:
- Nov 10, 2010, 3:40:49 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'c18334b998a8adbf0013b8e1ce0824774019443e')
- Children:
- cd246b32ff1d71ef365e9ae2dd3c16bc4a01a36e
- Parents:
- 7a452a7797022a5eead0baf7b8b21bb39014afaa
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2010-11-10 15:40:49+01:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:38+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
misc/auxiliary.h.in
r7a452a7 rbc085c 302 302 303 303 #ifdef _DEBUG 304 # define FORCE INLINE inline304 # define FORCE_INLINE inline 305 305 #else 306 306 #ifdef NDEBUG 307 307 #if defined(_MSC_VER) 308 # define FORCE INLINE __forceinline308 # define FORCE_INLINE __forceinline 309 309 #elif defined(__GNUC__) && __GNUC__ > 3 310 # define FORCE INLINE inline __attribute__ ((always_inline))311 #else 312 # define FORCE INLINE inline313 #endif 314 #else 315 # define FORCE INLINE inline310 # define FORCE_INLINE inline __attribute__ ((always_inline)) 311 #else 312 # define FORCE_INLINE inline 313 #endif 314 #else 315 # define FORCE_INLINE inline 316 316 #endif 317 317 /* NDEBUG */ … … 325 325 326 326 327 #if defined(__GNUC__) && defined(__GNUC_MINOR__) 328 #define _GNUC_PREREQ(maj, min) ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min)) 329 #else 330 #define _GNUC_PREREQ(maj, min) 0 331 #endif 332 333 #if _GNUC_PREREQ(3,3) && defined(__ELF__) 334 #define FORCE_INTERNAL __attribute__ ((visibility ("internal"))) 335 #else 336 #define FORCE_INTERNAL 337 #endif 338 339 #if _GNUC_PREREQ(3,3) 340 #define FORCE_DEPRECATED __attribute__ ((deprecated)) 341 #else 342 #define FORCE_DEPRECATED 343 #endif 344 345 #ifdef __cplusplus 346 # define BEGIN_CDECL extern "C" { 347 # define END_CDECL } 348 #else 349 # define BEGIN_CDECL 350 # define END_CDECL 351 #endif 352 327 353 328 354
Note: See TracChangeset
for help on using the changeset viewer.