Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why can't I use sizeof in a preprocessor condition?

I understand that sizeof is an operator, which is evaluated at compile time to an integer constant. But it seem it can not be used in the #if preprocessor directive like:

#if 4 == sizeof(int)
    typedef int Int32;
#endif

(cygwin-gcc 3.4.4 as well as Visual C++ 6.0 report compile errors)

Why is such usage not allowed?

like image 889
felix0322 Avatar asked Oct 23 '09 09:10

felix0322


1 Answers

Because sizeof is evaluated at compilation time while directives are evaluated before compilation, and the part that does that is not the compiler, so it won't understand what sizeof means.

like image 140
RichN Avatar answered Sep 25 '22 08:09

RichN