00001 // Copyright (C) Calum Grant 2006 00002 // http://calumgrant.net 00003 00004 #ifndef CG_STATIC_ASSERT_HPP 00005 #define CG_STATIC_ASSERT_HPP 00006 00007 namespace cg 00008 { 00010 template<bool x> struct static_assert; 00011 template<> struct static_assert<true> { }; 00012 } 00013 00014 #endif
1.5.7.1