diff --git a/sol/error.hpp b/sol/error.hpp index d18398ea..c64cf453 100644 --- a/sol/error.hpp +++ b/sol/error.hpp @@ -28,8 +28,8 @@ namespace sol { class error : public std::runtime_error { public: - error(const std::string& str) noexcept: std::runtime_error("lua: error: " + str) {} + error(const std::string& str): std::runtime_error("lua: error: " + str) {} }; } // sol -#endif // SOL_ERROR_HPP +#endif // SOL_ERROR_HPP