summaryrefslogtreecommitdiff
path: root/src/mbgl/util/io.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/util/io.hpp')
-rw-r--r--src/mbgl/util/io.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/util/io.hpp b/src/mbgl/util/io.hpp
index 2679eb5360..795a465328 100644
--- a/src/mbgl/util/io.hpp
+++ b/src/mbgl/util/io.hpp
@@ -7,7 +7,7 @@ namespace mbgl {
namespace util {
struct IOException : std::runtime_error {
- inline IOException(int err, const char* msg) : std::runtime_error(msg), code(err) {
+ IOException(int err, const char* msg) : std::runtime_error(msg), code(err) {
}
const int code = 0;
};