Search

May 03, 2016
Learn »
...API seems to be defined as follows:

...
#elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined...
January 29, 2016
General »
...very complicated. Example:

#if __APPLE__
// some declarations
#elif linux
// some declarations
#endif

The problems I...
September 13, 2015
Learn »
...tried to redefine "else if" as "elif" using "alias elif = else if;". No matter what...
June 13, 2015
General »
...even C#:

#if OS_IOS || OS_ANDROID
   ...
#elif OS_WINDOWS

#endif


In Rust, there is...
May 21, 2015
Learn »
...look crazy, but they are worth it :)

elif instead of else if:
http://rextester.com...
May 21, 2015
Learn »
...of ret and else if instead of elif :)
I think to create a truly correct...
September 15, 2014
General »
...in the world of #define and its minions #if/#ifdef/#elif/#if defined()/#else/#endif

May 22, 2014
General »
...previous and second-previous column on stack
#elif HAVE_CXX11_UNIQUE_PTR
    std::unique_ptr...
March 29, 2014
GDC »
...an impossible #if condition
of:
#if _WIN32
...
#elif POSIX
...
#endif

I am no expert when...
December 31, 2013
Issues »
...Specifically:

-----
#if TARGET_WINDOS
    obj_ext  = "obj";
#elif TARGET_LINUX || TARGET_OSX || TARGET_FREEBSD || TARGET...
1 2 3 4
Next ›   Last »