From 8b010b1f99622aae6ca7df19b14ca8f94038fa1b Mon Sep 17 00:00:00 2001 From: Vikram Rajkumar Date: Fri, 26 Jun 2015 11:40:49 -0400 Subject: [PATCH] Fix compiler warning --- libraries/db/include/graphene/db/index.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/db/include/graphene/db/index.hpp b/libraries/db/include/graphene/db/index.hpp index ae0e61b5..1dc6218d 100644 --- a/libraries/db/include/graphene/db/index.hpp +++ b/libraries/db/include/graphene/db/index.hpp @@ -167,7 +167,7 @@ namespace graphene { namespace db { const T* result = dynamic_cast(item.get()); if( result != nullptr ) return *result; } - assert( !"invalid index type" ); + FC_ASSERT( !"invalid index type" ); } protected: