fix document problem
This commit is contained in:
parent
4b8cc94a25
commit
7b32bbaae7
@ -131,8 +131,8 @@ StringStream source(s);
|
|||||||
GenericStringBuffer<UTF16<> > target;
|
GenericStringBuffer<UTF16<> > target;
|
||||||
|
|
||||||
bool hasError = false;
|
bool hasError = false;
|
||||||
while (source.Peak() != '\0')
|
while (source.Peek() != '\0')
|
||||||
if (!Transcoder::Transcode<UTF8<>, UTF16<> >(source, target)) {
|
if (!Transcoder<UTF8<>, UTF16<>>::Transcode(source, target)) {
|
||||||
hasError = true;
|
hasError = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -137,8 +137,8 @@ StringStream source(s);
|
|||||||
GenericStringBuffer<UTF16<> > target;
|
GenericStringBuffer<UTF16<> > target;
|
||||||
|
|
||||||
bool hasError = false;
|
bool hasError = false;
|
||||||
while (source.Peak() != '\0')
|
while (source.Peek() != '\0')
|
||||||
if (!Transcoder::Transcode<UTF8<>, UTF16<> >(source, target)) {
|
if (!Transcoder<UTF8<>, UTF16<>>::Transcode(source, target)) {
|
||||||
hasError = true;
|
hasError = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user