From f9746b6fe61a8ba51f6211c2f16eba3cb16f0d31 Mon Sep 17 00:00:00 2001 From: Daniel Larimer Date: Mon, 9 Jun 2014 12:13:29 -0400 Subject: [PATCH] fix exception macro --- include/fc/exception/exception.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fc/exception/exception.hpp b/include/fc/exception/exception.hpp index 3e78fe4..827d227 100644 --- a/include/fc/exception/exception.hpp +++ b/include/fc/exception/exception.hpp @@ -231,7 +231,7 @@ namespace fc :BASE(c){} \ TYPE( const BASE& c ) \ :BASE(c){} \ - TYPE():exception(CODE, BOOST_PP_STRINGIZE(TYPE), WHAT){}\ + TYPE():BASE(CODE, BOOST_PP_STRINGIZE(TYPE), WHAT){}\ \ virtual std::shared_ptr dynamic_copy_exception()const\ { return std::make_shared( *this ); } \