Fix 80-column violation

Swift SVN r22551
This commit is contained in:
Dmitri Hrybenko
2014-10-06 21:01:22 +00:00
parent dc4d3818e0
commit 8fa7112760

View File

@@ -70,8 +70,8 @@ static bool extractFirstUnicodeScalarImpl(StringRef S, unsigned &Scalar) {
UTF32 C;
UTF32 *TargetStart = &C;
ConvertUTF8toUTF32(&SourceNext, SourceStart + S.size(), &TargetStart, TargetStart + 1,
lenientConversion);
ConvertUTF8toUTF32(&SourceNext, SourceStart + S.size(), &TargetStart,
TargetStart + 1, lenientConversion);
if (TargetStart == &C) {
// The source string contains an ill-formed subsequence at the end.
return false;