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>2015-12-18 14:36:51 +0300
committerMilo Yip <miloyip@gmail.com>2015-12-18 14:36:51 +0300
commita6a73b51b5753866f513b029fa721081521c1a9e (patch)
treebcccc5ebfa5c1d1e50dcb5a9df2d894f15505c74 /include/rapidjson/pointer.h
parent9ce381b80165095b79f7ab3475a4a544cde73f4e (diff)
Try to fix clang and gcc warnings problems againx2
Diffstat (limited to 'include/rapidjson/pointer.h')
-rw-r--r--include/rapidjson/pointer.h31
1 files changed, 14 insertions, 17 deletions
diff --git a/include/rapidjson/pointer.h b/include/rapidjson/pointer.h
index f58ce356..7519490d 100644
--- a/include/rapidjson/pointer.h
+++ b/include/rapidjson/pointer.h
@@ -18,6 +18,11 @@
#include "document.h"
#include "internal/itoa.h"
+#ifdef __clang__
+RAPIDJSON_DIAG_PUSH
+RAPIDJSON_DIAG_OFF(switch-enum)
+#endif
+
RAPIDJSON_NAMESPACE_BEGIN
static const SizeType kPointerInvalidIndex = ~SizeType(0); //!< Represents an invalid index in GenericPointer::Token
@@ -71,7 +76,7 @@ template <typename ValueType, typename Allocator = CrtAllocator>
class GenericPointer {
public:
typedef typename ValueType::EncodingType EncodingType; //!< Encoding type from Value
- typedef typename EncodingType::Ch Ch; //!< Character type from Value
+ typedef typename ValueType::Ch Ch; //!< Character type from Value
//! A token is the basic units of internal representation.
/*!
@@ -472,11 +477,7 @@ public:
return 0;
v = &((*v)[t->index]);
break;
- case kNullType:
- case kFalseType:
- case kTrueType:
- case kStringType:
- case kNumberType:
+ default:
return 0;
}
}
@@ -705,11 +706,7 @@ public:
return false;
v = &((*v)[t->index]);
break;
- case kNullType:
- case kFalseType:
- case kTrueType:
- case kStringType:
- case kNumberType:
+ default:
return false;
}
}
@@ -722,11 +719,7 @@ public:
return false;
v->Erase(v->Begin() + last->index);
return true;
- case kNullType:
- case kFalseType:
- case kTrueType:
- case kStringType:
- case kNumberType:
+ default:
return false;
}
}
@@ -958,7 +951,7 @@ private:
*/
class PercentDecodeStream {
public:
- typedef Ch Ch;
+ typedef typename ValueType::Ch Ch;
//! Constructor
/*!
@@ -1326,4 +1319,8 @@ bool EraseValueByPointer(T& root, const CharType(&source)[N]) {
RAPIDJSON_NAMESPACE_END
+#ifdef __clang__
+RAPIDJSON_DIAG_POP
+#endif
+
#endif // RAPIDJSON_POINTER_H_