diff options
-rw-r--r-- | Jamroot.jam | 2 | ||||
-rw-r--r-- | utility/glRef.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Jamroot.jam b/Jamroot.jam index 953092a..d1ab0de 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -15,7 +15,7 @@ lib pthread ; project : requirements <cxxstd>20 - <variant>debug:<warnings>extra + <variant>debug:<warnings>pedantic <variant>debug:<warnings-as-errors>on <variant>release:<lto>on <toolset>tidy:<exclude>gfx/models/obj.cpp diff --git a/utility/glRef.hpp b/utility/glRef.hpp index aae6629..8596bd3 100644 --- a/utility/glRef.hpp +++ b/utility/glRef.hpp @@ -11,7 +11,7 @@ public: if (!id) { throw std::runtime_error("Get function failed"); } - }; + } glRef(glRef && other) : id {other.id} { |