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:
authorardb-uk <59880669+ardb-uk@users.noreply.github.com>2021-10-12 18:22:22 +0300
committerGitHub <noreply@github.com>2021-10-12 18:22:22 +0300
commit14f1e37f850bace26aadce735bb204aaaaee9c2e (patch)
treeb61f927ef75abc75db738607e68ca29f434bc496
parent2e8f5d897d9d461a7273b4b812b0127f321b1dcf (diff)
Resolve issue 1948
Correct instances of >> as they failed compilation.
-rw-r--r--include/rapidjson/reader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rapidjson/reader.h b/include/rapidjson/reader.h
index 542b7c00..b37afffb 100644
--- a/include/rapidjson/reader.h
+++ b/include/rapidjson/reader.h
@@ -1694,7 +1694,7 @@ private:
}
else {
SizeType numCharsToCopy = static_cast<SizeType>(s.Length());
- GenericStringStream<UTF8<NumberCharacter>> srcStream(s.Pop());
+ GenericStringStream<UTF8<NumberCharacter> > srcStream(s.Pop());
StackStream<typename TargetEncoding::Ch> dstStream(stack_);
while (numCharsToCopy--) {
Transcoder<UTF8<typename TargetEncoding::Ch>, TargetEncoding>::Transcode(srcStream, dstStream);