ITK  4.13.0
Insight Segmentation and Registration Toolkit
Macros
itk_compiler_detection.h File Reference

Go to the source code of this file.

Macros

#define ITK_DEC(X)   (X)
 
#define ITK_HEX(X)
 

Macro Definition Documentation

#define ITK_DEC (   X)    (X)

Definition at line 23 of file itk_compiler_detection.h.

#define ITK_HEX (   X)
Value:
( \
((X)>>28 & 0xF) * 10000000 + \
((X)>>24 & 0xF) * 1000000 + \
((X)>>20 & 0xF) * 100000 + \
((X)>>16 & 0xF) * 10000 + \
((X)>>12 & 0xF) * 1000 + \
((X)>>8 & 0xF) * 100 + \
((X)>>4 & 0xF) * 10 + \
((X) & 0xF) \
)

Definition at line 24 of file itk_compiler_detection.h.