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

git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@267290 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2016-04-23 14:54:28 +00:00
Родитель 4345dad2ab
Коммит 46f563960f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

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