From 9f92cab6b884711ca8be050b500a2880a955f001 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sat, 23 Jun 2018 15:49:21 +0100 Subject: Switching to east const This is compared to const west, which is not very consistent, as const always acts on what is on its left, and if there isn't anything on the left, it will act on what is on its right. By always placing const on the right of what it should act on, the rule becomes more consistent. --- yage/core/exception.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'yage/core/exception.h') diff --git a/yage/core/exception.h b/yage/core/exception.h index 70042e02..0c53aba3 100644 --- a/yage/core/exception.h +++ b/yage/core/exception.h @@ -20,7 +20,7 @@ class FileLoadException : public std::runtime_error public: FileLoadException(std::string err); - virtual const char *what() const throw(); + virtual char const *what() const throw(); private: std::string err_msg; -- cgit