This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* static_block.h | |
* | |
* An implementation of a Java-style static block, in C++ (and potentially a | |
* GCC/clang extension to avoid warnings). Almost, but not quite, valid C. | |
* Partially inspired by Andrei Alexandrescu's Scope Guard and | |
* discussions on stackoverflow.com | |
* | |
* By Eyal Rozenberg <[email protected]> | |
* |
NewerOlder