aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Exception.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-08 11:38:16 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-08 11:38:16 +0100
commit067247360d68042ad5466b802399338c14d7dc58 (patch)
tree86a2eca9ff8c25f9d5efcccc9b41f9974bbff33f /src/crepe/Exception.cpp
parent7b63eb310dfd299b6d26169cb0981c9bfaf160b6 (diff)
fix code standard issue in Exception
Diffstat (limited to 'src/crepe/Exception.cpp')
-rw-r--r--src/crepe/Exception.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/Exception.cpp b/src/crepe/Exception.cpp
index dab8f2e..bfdbcdd 100644
--- a/src/crepe/Exception.cpp
+++ b/src/crepe/Exception.cpp
@@ -6,7 +6,7 @@
using namespace std;
using namespace crepe;
-const char * Exception::what() { return error.c_str(); }
+const char * Exception::what() const noexcept { return error.c_str(); }
Exception::Exception(const char * fmt, ...) {
va_list args;