summaryrefslogtreecommitdiff
path: root/src/mbgl/gl/enum.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/gl/enum.hpp')
-rw-r--r--src/mbgl/gl/enum.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/gl/enum.hpp b/src/mbgl/gl/enum.hpp
index 6aa29efdb1..9780be55af 100644
--- a/src/mbgl/gl/enum.hpp
+++ b/src/mbgl/gl/enum.hpp
@@ -13,7 +13,7 @@ public:
using InType = std::conditional_t<std::is_same<std::underlying_type_t<T>, bool>::value, platform::GLboolean, platform::GLint>;
using OutType = std::conditional_t<std::is_same<std::underlying_type_t<T>, bool>::value, platform::GLboolean, platform::GLenum>;
- static T from(const InType);
+ static T from(InType);
static OutType to(T);
};