From cd65a43855f33555eca5f3e3ad5d37661253209f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20K=C3=A4fer?= Date: Fri, 13 May 2016 15:41:22 +0200 Subject: [core] move from microsecond precision timestamp to integer second precision --- src/mbgl/renderer/debug_bucket.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/mbgl/renderer/debug_bucket.hpp') diff --git a/src/mbgl/renderer/debug_bucket.hpp b/src/mbgl/renderer/debug_bucket.hpp index e824701fa6..f26b7b79ec 100644 --- a/src/mbgl/renderer/debug_bucket.hpp +++ b/src/mbgl/renderer/debug_bucket.hpp @@ -18,16 +18,16 @@ class GLObjectStore; class DebugBucket : private util::noncopyable { public: DebugBucket(const OverscaledTileID& id, TileData::State, - optional modified, - optional expires, + optional modified, + optional expires, MapDebugOptions); void drawLines(PlainShader&, gl::GLObjectStore&); void drawPoints(PlainShader&, gl::GLObjectStore&); const TileData::State state; - const optional modified; - const optional expires; + const optional modified; + const optional expires; const MapDebugOptions debugMode; private: -- cgit v1.2.1