summaryrefslogtreecommitdiff
path: root/src/script/script_fatalerror.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/script/script_fatalerror.hpp')
-rw-r--r--src/script/script_fatalerror.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/script/script_fatalerror.hpp b/src/script/script_fatalerror.hpp
index 5d1a2c125..96c64e0b9 100644
--- a/src/script/script_fatalerror.hpp
+++ b/src/script/script_fatalerror.hpp
@@ -19,7 +19,7 @@ public:
* Creates a "fatal error" exception.
* @param msg The message describing the cause of the fatal error.
*/
- Script_FatalError(const char *msg) :
+ Script_FatalError(const std::string &msg) :
msg(msg)
{}
@@ -27,10 +27,10 @@ public:
* The error message associated with the fatal error.
* @return The error message.
*/
- const char *GetErrorMessage() { return msg; }
+ const std::string &GetErrorMessage() const { return msg; }
private:
- const char *msg; ///< The error message.
+ const std::string msg; ///< The error message.
};
#endif /* SCRIPT_FATALERROR_HPP */