[libFuzzer] fix -Werror build

llvm-svn: 363469
This commit is contained in:
Kostya Serebryany 2019-06-14 22:34:30 +00:00
parent a704a8f28c
commit 2fa6838e5f
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ static Vector<uint8_t> DFTStringToVector(const std::string &DFTString) {
static bool ParseError(const char *Err, const std::string &Line) {
Printf("DataFlowTrace: parse error: %s: Line: %s\n", Err, Line.c_str());
return false;
};
}
// TODO(metzman): replace std::string with std::string_view for
// better performance. Need to figure our how to use string_view on Windows.