Skip to content

Commit

Permalink
Merge pull request #703 from jmallach/master
Browse files Browse the repository at this point in the history
Fix builds on x32 platform.
  • Loading branch information
miloyip authored Aug 2, 2016
2 parents fedae85 + 323a0dc commit ab791ae
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 @@ -250,7 +250,7 @@

//! Whether using 64-bit architecture
#ifndef RAPIDJSON_64BIT
#if defined(__LP64__) || defined(_WIN64) || defined(__EMSCRIPTEN__)
#if defined(__LP64__) || (defined(__x86_64__) && defined(__ILP32__)) || defined(_WIN64) || defined(__EMSCRIPTEN__)
#define RAPIDJSON_64BIT 1
#else
#define RAPIDJSON_64BIT 0
Expand Down

0 comments on commit ab791ae

Please sign in to comment.