mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-10-12 02:36:37 +02:00
fix gcc warnings
This commit is contained in:
@@ -505,10 +505,10 @@ private:
|
||||
#endif
|
||||
} value_;
|
||||
ValueType type_ : 8;
|
||||
int allocated_ : 1; // Notes: if declared as bool, bitfield is useless.
|
||||
unsigned int allocated_ : 1; // Notes: if declared as bool, bitfield is useless.
|
||||
#ifdef JSON_VALUE_USE_INTERNAL_MAP
|
||||
unsigned int itemIsUsed_ : 1; // used by the ValueInternalMap container.
|
||||
int memberNameIsStatic_ : 1; // used by the ValueInternalMap container.
|
||||
unsigned int memberNameIsStatic_ : 1; // used by the ValueInternalMap container.
|
||||
#endif
|
||||
CommentInfo* comments_;
|
||||
|
||||
|
Reference in New Issue
Block a user