diff options
| author | 2020-11-15 03:57:08 +1100 | |
|---|---|---|
| committer | 2020-11-15 03:57:08 +1100 | |
| commit | f191d038ec1fa110e06374ff79e345c91b3365d7 (patch) | |
| tree | 491410230c4efc26546f347cba8be0e8d9e79937 /3rdparty/sol2 | |
| parent | 55b8ca317ab1f77850f498c1523355e1f5dd8d03 (diff) | |
Minimal changes to sol2 and bgfx to compile as C++17.
These changes should be sent upstream as pull requests.
Diffstat (limited to '3rdparty/sol2')
| -rw-r--r-- | 3rdparty/sol2/sol/sol.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/sol2/sol/sol.hpp b/3rdparty/sol2/sol/sol.hpp index 4ef5807fdcb..9e0b5f85338 100644 --- a/3rdparty/sol2/sol/sol.hpp +++ b/3rdparty/sol2/sol/sol.hpp @@ -4533,7 +4533,7 @@ namespace sol { class bad_optional_access : public std::exception { public: bad_optional_access() = default; - const char* what() const noexcept { + const char* what() const noexcept override { return "Optional has no value"; } }; |
