diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2016-02-04 10:59:36 -0800 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2016-02-04 13:18:14 -0800 |
commit | 4d29c7d5cec6d6261431ea705ceab500768c3e3a (patch) | |
tree | 7986ac38e1d35d2438d9bfec6b8dc742473dde54 /include/mbgl/storage | |
parent | 19aa090bdcff083c039c0767908c9608ad853403 (diff) | |
download | qtlocation-mapboxgl-4d29c7d5cec6d6261431ea705ceab500768c3e3a.tar.gz |
[core] Remove Response::Error::Reason::Canceled
There is no such thing as a cancelled response, only cancelled requests. A request that is cancelled does not have its callback called with a Response.
Diffstat (limited to 'include/mbgl/storage')
-rw-r--r-- | include/mbgl/storage/response.hpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/mbgl/storage/response.hpp b/include/mbgl/storage/response.hpp index 29af5281fe..a44902e1f9 100644 --- a/include/mbgl/storage/response.hpp +++ b/include/mbgl/storage/response.hpp @@ -38,7 +38,6 @@ public: NotFound = 2, Server = 3, Connection = 4, - Canceled = 5, Other = 6, } reason = Reason::Other; |