mirror of
https://github.com/Tencent/rapidjson.git
synced 2025-11-08 14:56:16 +01:00
Added CapitalizeFilter::RawNumber()
This commit is contained in:
@@ -24,6 +24,7 @@ struct CapitalizeFilter {
|
|||||||
bool Int64(int64_t i) { return out_.Int64(i); }
|
bool Int64(int64_t i) { return out_.Int64(i); }
|
||||||
bool Uint64(uint64_t u) { return out_.Uint64(u); }
|
bool Uint64(uint64_t u) { return out_.Uint64(u); }
|
||||||
bool Double(double d) { return out_.Double(d); }
|
bool Double(double d) { return out_.Double(d); }
|
||||||
|
bool RawNumber(const char* str, SizeType length, bool copy) { return out_.RawNumber(str, length, copy); }
|
||||||
bool String(const char* str, SizeType length, bool) {
|
bool String(const char* str, SizeType length, bool) {
|
||||||
buffer_.clear();
|
buffer_.clear();
|
||||||
for (SizeType i = 0; i < length; i++)
|
for (SizeType i = 0; i < length; i++)
|
||||||
|
|||||||
Reference in New Issue
Block a user