Skip to content

Commit

Permalink
Merge pull request #559 from corporateshark/master
Browse files Browse the repository at this point in the history
Custom Microsoft headers are necessary only for Visual Studio 2012 and lower
  • Loading branch information
miloyip committed Feb 26, 2016
2 parents ed7efe6 + 852ed80 commit 4de9ba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/rapidjson/rapidjson.h
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
*/
#ifndef RAPIDJSON_NO_INT64DEFINE
//!@cond RAPIDJSON_HIDDEN_FROM_DOXYGEN
#ifdef _MSC_VER
#if defined(_MSC_VER) && (_MSC_VER < 1800) // Visual Studio 2013
#include "msinttypes/stdint.h"
#include "msinttypes/inttypes.h"
#else
Expand Down

0 comments on commit 4de9ba5

Please sign in to comment.