diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-02-21 17:15:32 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-02-21 17:15:32 +0000 |
commit | 780d87deefb042a4e0df667a282b5a190f17ef81 (patch) | |
tree | 4d6579ee1fbbe0c8d08b7d0e221e0d102312035b /utility | |
parent | Named model parts, fix bogie spelling, new brush47 model (diff) | |
download | ilt-780d87deefb042a4e0df667a282b5a190f17ef81.tar.bz2 ilt-780d87deefb042a4e0df667a282b5a190f17ef81.tar.xz ilt-780d87deefb042a4e0df667a282b5a190f17ef81.zip |
Enable pedantic warnings
Diffstat (limited to 'utility')
-rw-r--r-- | utility/glRef.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
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} { |