From 903974e7b3ceecb977449ac5ea34808de9501997 Mon Sep 17 00:00:00 2001 From: Nicolas Noble Date: Fri, 2 Aug 2013 15:53:08 -0700 Subject: Heavily revamped the C-to-Lua yielding mechanism. Now more generic. --- includes/Exceptions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/Exceptions.h') diff --git a/includes/Exceptions.h b/includes/Exceptions.h index 2d452cc..729f523 100644 --- a/includes/Exceptions.h +++ b/includes/Exceptions.h @@ -34,7 +34,7 @@ class GeneralException { const std::vector getTrace() const { return m_trace; } protected: - GeneralException() { } + explicit GeneralException() { } void setMsg(char * msg) { if (m_msg) free(m_msg); m_msg = msg; } void genTrace(); -- cgit v1.2.3