Tag Archives: assert

Static asserts

One of the new features of C++11 is the ability to do a compile-time assertions. These assert functions are similar in concept to the runtime assert functions we all know and love. You pass in a constant expression and a … Continue reading

Posted in C/C++ | Tagged , | 1 Comment