#ifndef PKE_COMPILE_TIME_ASSERT_HPP #define PKE_COMPILE_TIME_ASSERT_HPP /* Compile-time assertion. * Useful for detecting changes in well-known data */ template class compt_a; template <> class compt_a{static const bool value = true;}; #endif /* PKE_COMPILE_TIME_ASSERT_HPP */