Fix compilation error for Mac OS X and 64-bit architecture
For a 64-bit architecture, unsigned long and size_t are the same. This causes a compilation error due to duplicate constructors in document.h.pull/739/head
parent
b6673c3fca
commit
b2760abeb2
|
@ -557,12 +557,14 @@ public:
|
||||||
flags_ |= kIntFlag;
|
flags_ |= kIntFlag;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if !defined(__x86_64__)
|
||||||
//! Constructor for size_t value.
|
//! Constructor for size_t value.
|
||||||
explicit GenericValue( size_t u ) RAPIDJSON_NOEXCEPT : data_(), flags_( kNumberUintFlag ) {
|
explicit GenericValue( size_t u ) RAPIDJSON_NOEXCEPT : data_(), flags_( kNumberUintFlag ) {
|
||||||
data_.n.u64 = u;
|
data_.n.u64 = u;
|
||||||
if ( !( u&0x80000000 ) )
|
if ( !( u&0x80000000 ) )
|
||||||
flags_ |= kIntFlag|kInt64Flag;
|
flags_ |= kIntFlag|kInt64Flag;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//! Constructor for double value.
|
//! Constructor for double value.
|
||||||
|
|
Loading…
Reference in New Issue