Merge pull request #495 from pah/fixes/494-warning-pop

encodings.h: fix typo in preprocessor condition (closes #494)
This commit is contained in:
Milo Yip 2015-12-16 16:46:35 +08:00
commit f36af30531

View File

@ -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