summaryrefslogtreecommitdiff
path: root/src/mbgl/gl/uniform.hpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-11-04 14:38:05 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-11-08 08:09:29 -0800
commit52be5d480d6fa0eabe51e2b66498f59c5d1f3edf (patch)
treeec9bd967d09a122e3a6a5b7911ec11117435acb4 /src/mbgl/gl/uniform.hpp
parentd1e2fe511ebf6d4aebbb08b2f0aba32e26c6edeb (diff)
downloadqtlocation-mapboxgl-52be5d480d6fa0eabe51e2b66498f59c5d1f3edf.tar.gz
[core] Put ignore in util namespace
Diffstat (limited to 'src/mbgl/gl/uniform.hpp')
-rw-r--r--src/mbgl/gl/uniform.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/gl/uniform.hpp b/src/mbgl/gl/uniform.hpp
index 0b303e9d6f..726cd4fe10 100644
--- a/src/mbgl/gl/uniform.hpp
+++ b/src/mbgl/gl/uniform.hpp
@@ -72,7 +72,7 @@ public:
static std::function<void ()> binder(State& state, Values&& values_) {
return [&state, values = std::move(values_)] () mutable {
- ignore({ (state.template get<Us>() = values.template get<Us>(), 0)... });
+ util::ignore({ (state.template get<Us>() = values.template get<Us>(), 0)... });
};
}
};