summaryrefslogtreecommitdiff
path: root/include/mbgl/util/image.hpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2015-06-24 17:38:58 +0200
committerKonstantin Käfer <mail@kkaefer.com>2015-07-08 19:45:59 +0200
commit55ef14f3a8d00aa09dc3b1daa951fb014ba5aee9 (patch)
treec16bbf986b31973f9a0c66d36f6f4207a439998f /include/mbgl/util/image.hpp
parent9991f9da543b7c1110334bed1e52dc5ce2f63779 (diff)
downloadqtlocation-mapboxgl-55ef14f3a8d00aa09dc3b1daa951fb014ba5aee9.tar.gz
compress_png: void* => const void*
Diffstat (limited to 'include/mbgl/util/image.hpp')
-rw-r--r--include/mbgl/util/image.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mbgl/util/image.hpp b/include/mbgl/util/image.hpp
index b2f70e1442..91a451890f 100644
--- a/include/mbgl/util/image.hpp
+++ b/include/mbgl/util/image.hpp
@@ -7,7 +7,7 @@
namespace mbgl {
namespace util {
-std::string compress_png(int width, int height, void *rgba);
+std::string compress_png(int width, int height, const void *rgba);
class Image {