diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-13 15:50:13 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-13 15:50:13 +0100 |
commit | 5e59c22f77073fdf49bf98697da6a68819eb5776 (patch) | |
tree | ed53c8306c93825e9a33d642ae976ec97eb94fb1 /src/crepe/Exception.cpp | |
parent | 7ec392eda3345606f0de75a432954b221cee82ce (diff) |
`make format`
Diffstat (limited to 'src/crepe/Exception.cpp')
-rw-r--r-- | src/crepe/Exception.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/crepe/Exception.cpp b/src/crepe/Exception.cpp index 3217169..5a24e7e 100644 --- a/src/crepe/Exception.cpp +++ b/src/crepe/Exception.cpp @@ -5,7 +5,4 @@ using namespace std; const char * Exception::what() const noexcept { return error.c_str(); } -Exception::Exception(const string & msg) { - this->error = msg; -} - +Exception::Exception(const string & msg) { this->error = msg; } |