Core: STATIC_ASSERT fixed for MSC10

git-svn-id: svn://ultimatepp.org/upp/trunk@8143 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2015-02-06 11:26:20 +00:00
parent 70ab08f870
commit d1e1810511

View file

@ -38,7 +38,7 @@ inline String GetTypeName(const ::std::type_info& tinfo) { return GetTypeName(
void __LOGF__(const char *format, ...);
#define STATIC_ASSERT( expr ) { struct __static_assert { unsigned static_assert:(expr); }; }
#define STATIC_ASSERT( expr ) { struct __static_assert { unsigned __static_assert_tst:(expr); }; }
#ifdef _DEBUG