From 7d3c9338c99fb52cd9ec25867c9c4f45a24e7d32 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Mon, 20 Feb 2017 10:22:54 -0800 Subject: [core] Link BackendScopes in a list for additional assertions --- include/mbgl/map/backend_scope.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/mbgl/map') diff --git a/include/mbgl/map/backend_scope.hpp b/include/mbgl/map/backend_scope.hpp index c13fb88ded..5a207e6ac4 100644 --- a/include/mbgl/map/backend_scope.hpp +++ b/include/mbgl/map/backend_scope.hpp @@ -10,7 +10,8 @@ public: ~BackendScope(); private: - Backend* priorBackend; + BackendScope* priorScope; + BackendScope* nextScope; Backend& backend; }; -- cgit v1.2.1