summaryrefslogtreecommitdiff
path: root/include/mbgl/storage/response.hpp
diff options
context:
space:
mode:
authorbsudekum <bobby@mapbox.com>2015-09-29 14:45:38 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2015-09-29 18:20:22 -0700
commit7112d436093d651ac0bdba4f9eaaf63e682b22a3 (patch)
tree552ae318f1ff7dc15cc90fa763c6437cc37c89e1 /include/mbgl/storage/response.hpp
parentc958ee45abe978274c1c86b8517b2c86bc303c8f (diff)
downloadqtlocation-mapboxgl-7112d436093d651ac0bdba4f9eaaf63e682b22a3.tar.gz
[node] Handle tiles which 404 better
Diffstat (limited to 'include/mbgl/storage/response.hpp')
-rw-r--r--include/mbgl/storage/response.hpp2
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;