diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2017-02-20 10:22:54 -0800 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2017-02-20 12:04:21 -0800 |
commit | 7d3c9338c99fb52cd9ec25867c9c4f45a24e7d32 (patch) | |
tree | 2031c4afca8936ff5cc0ad68872516304377a2f1 /include/mbgl/map | |
parent | 773f330774db50ea82d2eb2e59b4250d67d7e4dc (diff) | |
download | qtlocation-mapboxgl-7d3c9338c99fb52cd9ec25867c9c4f45a24e7d32.tar.gz |
[core] Link BackendScopes in a list for additional assertions
Diffstat (limited to 'include/mbgl/map')
-rw-r--r-- | include/mbgl/map/backend_scope.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
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; }; |