summaryrefslogtreecommitdiff
path: root/src/modules/m_rpc_json.cpp
diff options
context:
space:
mode:
authorGravatar pippijn2007-07-18 09:54:07 +0000
committerGravatar pippijn2007-07-18 09:54:07 +0000
commitf6d5937b013077dae0fe29bc85d791e9c74aaeeb (patch)
tree5adda611726fd0186db7fcd45cbf5b7db0626de4 /src/modules/m_rpc_json.cpp
parentStability fixes, some DELETEs here that dont belong any more. (diff)
untested fix for "unused functions"
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7471 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_rpc_json.cpp')
-rw-r--r--src/modules/m_rpc_json.cpp4
1 files changed, 4 insertions, 0 deletions
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
{