FC Updates from BitShares and myself #21

Closed
nathanielhourt wants to merge 687 commits from dapp-support into latest-fc
Showing only changes of commit 78aaaac8e1 - Show all commits

View file

@ -27,7 +27,7 @@ namespace fc
{ {
void throw_assertion_failure( const std::string& message ); void throw_assertion_failure( const std::string& message );
} }
#define _FC_ASSERT( cond, msg ) { if( !(cond) ) { fc::throw_assertion_failure( #cond ": " msg ); } } #define _FC_ASSERT( cond, msg ) { if( !(cond) ) { char t[] = #cond ": " msg; fc::throw_assertion_failure( t ); } }
#endif #endif
namespace fc namespace fc