diff options
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/json.h | 8 | ||||
-rw-r--r-- | src/modules/m_rpc_json.cpp | 4 |
2 files changed, 4 insertions, 8 deletions
diff --git a/src/modules/json.h b/src/modules/json.h index ca9ed8d3f..7643d9713 100644 --- a/src/modules/json.h +++ b/src/modules/json.h @@ -18,10 +18,6 @@ #define expect_false(expr) maybe_expect ((expr) != 0, 0) #define expect_true(expr) maybe_expect ((expr) != 0, 1) -static void unreachable_internal (char const *file, int line, char const *function); -static void throw_unless_internal (char const *file, int line, char const *function, char const *condition); -static void throw_msg_unless_internal (char const *file, int line, char const *function, char const *message); - #ifdef __GNUC__ # define CURFUNC __PRETTY_FUNCTION__ #elif defined(__BORLANDC__) @@ -30,10 +26,6 @@ static void throw_msg_unless_internal (char const *file, int line, char const *f # define CURFUNC __FUNCTION__ #endif -#define throw_unreachable unreachable_internal (__FILE__, __LINE__, CURFUNC) -#define throw_unless(condition) if (!expect_false (condition)) throw_unless_internal (__FILE__, __LINE__, CURFUNC, #condition) -#define throw_msg_unless(condition, message) if (!expect_false (condition)) throw_msg_unless_internal (__FILE__, __LINE__, CURFUNC, message) - namespace json { class ValueIterator; diff --git a/src/modules/m_rpc_json.cpp b/src/modules/m_rpc_json.cpp index 563ca627c..4bcb3ba08 100644 --- a/src/modules/m_rpc_json.cpp +++ b/src/modules/m_rpc_json.cpp @@ -135,6 +135,10 @@ throw_msg_unless_internal (char const *file, int line, char const *function, cha throw std::runtime_error (buf); } +#define throw_unreachable unreachable_internal (__FILE__, __LINE__, CURFUNC) +#define throw_unless(condition) if (!expect_false (condition)) throw_unless_internal (__FILE__, __LINE__, CURFUNC, #condition) +#define throw_msg_unless(condition, message) if (!expect_false (condition)) throw_msg_unless_internal (__FILE__, __LINE__, CURFUNC, message) + namespace json { |