Skip to content

Instantly share code, notes, and snippets.

@nirbhayc
Created June 20, 2017 21:29
Show Gist options
  • Save nirbhayc/78c2e1cd86459f2d8f6ace66ca598b77 to your computer and use it in GitHub Desktop.
Save nirbhayc/78c2e1cd86459f2d8f6ace66ca598b77 to your computer and use it in GitHub Desktop.
(Blog) Compile-time assertion
#define compile_time_assert(expr) \
do \
{ \
typedef char compile_time_assert[(expr) ? 1 : -1] __attribute__((unused)); \
} while(0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment