Fix compiler warning

This commit is contained in:
Vikram Rajkumar 2015-06-26 11:40:49 -04:00
parent 8d45896900
commit 8b010b1f99

View file

@ -167,7 +167,7 @@ namespace graphene { namespace db {
const T* result = dynamic_cast<const T*>(item.get()); const T* result = dynamic_cast<const T*>(item.get());
if( result != nullptr ) return *result; if( result != nullptr ) return *result;
} }
assert( !"invalid index type" ); FC_ASSERT( !"invalid index type" );
} }
protected: protected: