mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-04-06 10:55:57 +02:00
Merge pull request #29 from mloy/type-punned-pointer
Type punned pointer I'll revert this if anyone reports a problem. *strict-aliasing* is not my favorite compiler warning.
This commit is contained in:
commit
3515db184a
@ -7,6 +7,10 @@ ELSE(JSONCPP_LIB_BUILD_SHARED)
|
||||
ENDIF(JSONCPP_LIB_BUILD_SHARED)
|
||||
|
||||
|
||||
if( CMAKE_COMPILER_IS_GNUCXX )
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror=strict-aliasing")
|
||||
endif( CMAKE_COMPILER_IS_GNUCXX )
|
||||
|
||||
SET( JSONCPP_INCLUDE_DIR ../../include )
|
||||
|
||||
SET( PUBLIC_HEADERS
|
||||
|
@ -34,7 +34,8 @@ namespace Json {
|
||||
#define ALIGNAS(byte_alignment)
|
||||
#endif
|
||||
static const unsigned char ALIGNAS(8) kNull[sizeof(Value)] = {0};
|
||||
const Value& Value::null = reinterpret_cast<const Value&>(kNull);
|
||||
const unsigned char& kNullRef = kNull[0];
|
||||
const Value& Value::null = reinterpret_cast<const Value&>(kNullRef);
|
||||
|
||||
const Int Value::minInt = Int(~(UInt(-1) / 2));
|
||||
const Int Value::maxInt = Int(UInt(-1) / 2);
|
||||
|
Loading…
x
Reference in New Issue
Block a user