More VS fixes (huehue)

Former-commit-id: 2c3e910d0bdf1c701b4643b4958150e7a0b8492a
This commit is contained in:
Lynix 2015-06-14 17:13:36 +02:00
parent f4c3ec51ed
commit 9670d9f3f9
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ namespace Ndk
template<typename SystemType>
bool World::HasSystem() const
{
static_assert(std::is_base_of<BaseSystem, SystemType>(), "SystemType is not a component");
static_assert(std::is_base_of<BaseSystem, SystemType>::value, "SystemType is not a component");
SystemIndex index = GetSystemIndex<SystemType>();
return HasSystem(index);