summaryrefslogtreecommitdiff
path: root/include/mbgl/gl/gl_helper.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/gl/gl_helper.hpp')
-rw-r--r--include/mbgl/gl/gl_helper.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mbgl/gl/gl_helper.hpp b/include/mbgl/gl/gl_helper.hpp
index 893c73e0c3..9d46d018c3 100644
--- a/include/mbgl/gl/gl_helper.hpp
+++ b/include/mbgl/gl/gl_helper.hpp
@@ -6,9 +6,9 @@ namespace gl {
template <typename T>
class Preserve {
public:
- inline Preserve() : data(T::Get()) {
+ Preserve() : data(T::Get()) {
}
- inline ~Preserve() {
+ ~Preserve() {
T::Set(data);
}