Fix compiler warning
This commit is contained in:
parent
8d45896900
commit
8b010b1f99
1 changed files with 1 additions and 1 deletions
|
|
@ -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:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue