Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilo Yip <miloyip@gmail.com>2016-04-06 18:33:26 +0300
committerMilo Yip <miloyip@gmail.com>2016-04-06 18:33:26 +0300
commit12425693ba255b8b8d68ba8ce752a23a25c2118f (patch)
treedd0ad2af94a65ca024b29298fe62f5be762213ac
parent49c29d057d3025d02b975bc9ed07e22ca166d317 (diff)
Revert formatting of enum
-rw-r--r--include/rapidjson/document.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/rapidjson/document.h b/include/rapidjson/document.h
index 2d9bfe6d..d286eb1e 100644
--- a/include/rapidjson/document.h
+++ b/include/rapidjson/document.h
@@ -1800,16 +1800,16 @@ private:
template <typename, typename, typename> friend class GenericDocument;
enum {
- kBoolFlag = 0x0008,
- kNumberFlag = 0x0010,
- kIntFlag = 0x0020,
- kUintFlag = 0x0040,
- kInt64Flag = 0x0080,
- kUint64Flag = 0x0100,
- kDoubleFlag = 0x0200,
- kStringFlag = 0x0400,
- kCopyFlag = 0x0800,
- kInlineStrFlag = 0x1000,
+ kBoolFlag = 0x0008,
+ kNumberFlag = 0x0010,
+ kIntFlag = 0x0020,
+ kUintFlag = 0x0040,
+ kInt64Flag = 0x0080,
+ kUint64Flag = 0x0100,
+ kDoubleFlag = 0x0200,
+ kStringFlag = 0x0400,
+ kCopyFlag = 0x0800,
+ kInlineStrFlag = 0x1000,
// Initial flags of different types.
kNullFlag = kNullType,