Resolve issue 1948

Correct instances of >> as they failed compilation.
This commit is contained in:
ardb-uk 2021-10-12 16:22:22 +01:00 committed by GitHub
parent 2e8f5d897d
commit 14f1e37f85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);