summaryrefslogtreecommitdiff
path: root/include/mbgl/util
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2019-12-09 15:09:42 +0100
committerAlexander Shalamov <alexander.shalamov@mapbox.com>2020-01-15 15:02:11 +0200
commit62b0f4cde289e5918c41d5b69b0a03baa6821862 (patch)
tree2042319da9abd756564dcbba7812d4868a177800 /include/mbgl/util
parent4b171cccf1c4012f8962b022f86c4ac8d73f09df (diff)
downloadqtlocation-mapboxgl-62b0f4cde289e5918c41d5b69b0a03baa6821862.tar.gz
[core] Add stretches and content to style::Image
Diffstat (limited to 'include/mbgl/util')
-rw-r--r--include/mbgl/util/exception.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/mbgl/util/exception.hpp b/include/mbgl/util/exception.hpp
index a9804e96c5..f0d7c64f42 100644
--- a/include/mbgl/util/exception.hpp
+++ b/include/mbgl/util/exception.hpp
@@ -10,9 +10,9 @@ struct Exception : std::runtime_error {
Exception(const std::string &msg) : std::runtime_error(msg) {}
};
-struct SpriteImageException : Exception {
- SpriteImageException(const char *msg) : Exception(msg) {}
- SpriteImageException(const std::string &msg) : Exception(msg) {}
+struct StyleImageException : Exception {
+ StyleImageException(const char *msg) : Exception(msg) {}
+ StyleImageException(const std::string &msg) : Exception(msg) {}
};
struct MisuseException : Exception {