diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2016-05-12 11:45:21 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2016-05-13 09:01:32 -0700 |
commit | 58863c3974fa5e41bdf540bc7b85da6f986e60e6 (patch) | |
tree | fae2126f2aa3479045533ffbb1a8e3dd3e2f61d7 /include/mbgl/util/geo.hpp | |
parent | 39da776bd7f696351364440427a6cd0b8fc3589e (diff) | |
download | qtlocation-mapboxgl-58863c3974fa5e41bdf540bc7b85da6f986e60e6.tar.gz |
[core] Remove unused
Diffstat (limited to 'include/mbgl/util/geo.hpp')
-rw-r--r-- | include/mbgl/util/geo.hpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/include/mbgl/util/geo.hpp b/include/mbgl/util/geo.hpp index 512a9f833d..d88d8f3e8b 100644 --- a/include/mbgl/util/geo.hpp +++ b/include/mbgl/util/geo.hpp @@ -169,19 +169,6 @@ inline bool operator!=(const LatLngBounds& a, const LatLngBounds& b) { return !(a == b); } -class MetersBounds { -public: - ProjectedMeters sw; - ProjectedMeters ne; - - MetersBounds(const ProjectedMeters& sw_, const ProjectedMeters& ne_) - : sw(sw_), ne(ne_) {} - - explicit operator bool() const { - return sw && ne; - } -}; - // Determines the orientation of the map. enum class NorthOrientation : uint8_t { Upwards, // Default |