summaryrefslogtreecommitdiff
path: root/src/mbgl/util/rapidjson.hpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2016-05-25 21:14:18 +0200
committerKonstantin Käfer <mail@kkaefer.com>2016-05-25 21:35:37 +0200
commite2bcea90fce8a1e05e517c615d21d845e955f53d (patch)
tree208da7ad0db235a13b5ae6d360279a624e46fb95 /src/mbgl/util/rapidjson.hpp
parent6368403f433cfbfed1547d4167a9836fa2942a97 (diff)
downloadqtlocation-mapboxgl-e2bcea90fce8a1e05e517c615d21d845e955f53d.tar.gz
[core] use #pragma once instead of ifdef include guards
Diffstat (limited to 'src/mbgl/util/rapidjson.hpp')
-rw-r--r--src/mbgl/util/rapidjson.hpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mbgl/util/rapidjson.hpp b/src/mbgl/util/rapidjson.hpp
index c9aad871d9..7262e8545c 100644
--- a/src/mbgl/util/rapidjson.hpp
+++ b/src/mbgl/util/rapidjson.hpp
@@ -1,5 +1,4 @@
-#ifndef MBGL_UTIL_RAPIDJSON
-#define MBGL_UTIL_RAPIDJSON
+#pragma once
#include <rapidjson/document.h>
#include <rapidjson/error/en.h>
@@ -10,5 +9,3 @@ using JSDocument = rapidjson::GenericDocument<rapidjson::UTF8<>, rapidjson::CrtA
using JSValue = rapidjson::GenericValue<rapidjson::UTF8<>, rapidjson::CrtAllocator>;
} // namespace mbgl
-
-#endif