summaryrefslogtreecommitdiff
path: root/src/mbgl/renderer/debug_bucket.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/renderer/debug_bucket.hpp')
-rw-r--r--src/mbgl/renderer/debug_bucket.hpp8
1 files changed, 4 insertions, 4 deletions
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<SystemTimePoint> modified,
- optional<SystemTimePoint> expires,
+ optional<Timestamp> modified,
+ optional<Timestamp> expires,
MapDebugOptions);
void drawLines(PlainShader&, gl::GLObjectStore&);
void drawPoints(PlainShader&, gl::GLObjectStore&);
const TileData::State state;
- const optional<SystemTimePoint> modified;
- const optional<SystemTimePoint> expires;
+ const optional<Timestamp> modified;
+ const optional<Timestamp> expires;
const MapDebugOptions debugMode;
private: