summaryrefslogtreecommitdiff
path: root/include/mbgl/renderer/frame_history.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/renderer/frame_history.hpp')
-rw-r--r--include/mbgl/renderer/frame_history.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mbgl/renderer/frame_history.hpp b/include/mbgl/renderer/frame_history.hpp
index b1f0bcb597..61bb59da33 100644
--- a/include/mbgl/renderer/frame_history.hpp
+++ b/include/mbgl/renderer/frame_history.hpp
@@ -11,7 +11,7 @@
namespace mbgl {
struct FrameSnapshot {
- explicit inline FrameSnapshot(timestamp t, float z) : t(t), z(z) {}
+ explicit inline FrameSnapshot(timestamp t_, float z_) : t(t_), z(z_) {}
float t;
float z;
};