diff options
author | bsudekum <bobby@mapbox.com> | 2015-09-29 14:45:38 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2015-09-29 18:20:22 -0700 |
commit | 7112d436093d651ac0bdba4f9eaaf63e682b22a3 (patch) | |
tree | 552ae318f1ff7dc15cc90fa763c6437cc37c89e1 /include/mbgl | |
parent | c958ee45abe978274c1c86b8517b2c86bc303c8f (diff) | |
download | qtlocation-mapboxgl-7112d436093d651ac0bdba4f9eaaf63e682b22a3.tar.gz |
[node] Handle tiles which 404 better
Diffstat (limited to 'include/mbgl')
-rw-r--r-- | include/mbgl/storage/response.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mbgl/storage/response.hpp b/include/mbgl/storage/response.hpp index cf22d9002b..e665f177fc 100644 --- a/include/mbgl/storage/response.hpp +++ b/include/mbgl/storage/response.hpp @@ -7,7 +7,7 @@ namespace mbgl { class Response { public: - enum Status : bool { Error, Successful }; + enum Status { Error, Successful, NotFound }; Status status = Error; std::string message; |