Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp A. Hartmann <pah@qo.cx>2015-12-16 11:40:39 +0300
committerPhilipp A. Hartmann <pah@qo.cx>2015-12-16 11:40:39 +0300
commit7899a3c125f9654968de77cdc431f0eb384429c0 (patch)
tree4d169509fa3b9c95d4c1ad69ef714659758edd17 /include/rapidjson/encodings.h
parenta1c4f325cab87c0fa2ce5b2737750adbc905b279 (diff)
encodings.h: fix typo in preprocessor condition (closes #494)
Diffstat (limited to 'include/rapidjson/encodings.h')
-rw-r--r--include/rapidjson/encodings.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rapidjson/encodings.h b/include/rapidjson/encodings.h
index bc3cd813..7b740d35 100644
--- a/include/rapidjson/encodings.h
+++ b/include/rapidjson/encodings.h
@@ -618,7 +618,7 @@ struct Transcoder<Encoding, Encoding> {
RAPIDJSON_NAMESPACE_END
-#if defined(__GNUC__) || defined(_MSV_VER)
+#if defined(__GNUC__) || defined(_MSC_VER)
RAPIDJSON_DIAG_POP
#endif