Is there some way to do something like this in c++, it seems sizeof cant be used there for some reason?
#if sizeof(wchar_t) != 2
#error "wchar_t is expected to be a 16 bit type."
#endif
|
|
|||
|
|
|
I think things like BOOST_STATIC_ASSERT could help. |
||
|
|
|
|
No, this can't be done because all macro expansion (#... things) is done in the pre-processor step which does not know anything about the types of the C++ code and even does not need to know anything about the language! It just expands/checks the #... things and nothing else! There are some other common errors, for example:
You can only access and use things in #if that are defined via command line options to the compiler or via #define. |
||
|
|
|
|
The preprocessor works without knowing anything about the types, even the builtin one. BTW, you can still do the check using a static_assert like feature (boost has one for instance, C++0X will have one). Edit: C99 and C++0X have also |
|||
|
|
|
|
Wouldn't you get basically what you want (compile error w/o the fancy message) by using a C_ASSERT?
|
||
|
|
|
|
sizeof() is a Edit: As pointed out in comments, sizeof() is mostly calculated at compile time. In C99, it can be used at runtime for arrays. Edit 2: You can do asserts at build time using the techniques described in this thread. |
||||||||
|
|
|
|
||
|
|