clang-tidy/cppcoreguidelines/ProTypeMemberInitCheck.cpp: Use raw_string_ostream::str() to flush the buffer explicitly.

llvm-svn: 267290
This commit is contained in:
NAKAMURA Takumi 2016-04-23 14:54:28 +00:00
parent 85676e3674
commit 66b0a87ae8
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ struct IntializerInsertion {
Stream << ", " << joined << "()";
break;
}
return Code;
return Stream.str();
}
InitializerPlacement Placement;