diff options
Diffstat (limited to 'includes/Exceptions.h')
-rw-r--r-- | includes/Exceptions.h | 2 |
1 files changed, 1 insertions, 1 deletions
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<String> getTrace() const { return m_trace; } protected: - GeneralException() { } + explicit GeneralException() { } void setMsg(char * msg) { if (m_msg) free(m_msg); m_msg = msg; } void genTrace(); |