[compiler-rt] r363469 - [libFuzzer] fix -Werror build

Kostya Serebryany via llvm-commits llvm-commits at lists.llvm.org
Fri Jun 14 15:34:30 PDT 2019


Author: kcc
Date: Fri Jun 14 15:34:30 2019
New Revision: 363469

URL: http://llvm.org/viewvc/llvm-project?rev=363469&view=rev
Log:
[libFuzzer] fix -Werror build

Modified:
    compiler-rt/trunk/lib/fuzzer/FuzzerDataFlowTrace.cpp

Modified: compiler-rt/trunk/lib/fuzzer/FuzzerDataFlowTrace.cpp
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/fuzzer/FuzzerDataFlowTrace.cpp?rev=363469&r1=363468&r2=363469&view=diff
==============================================================================
--- compiler-rt/trunk/lib/fuzzer/FuzzerDataFlowTrace.cpp (original)
+++ compiler-rt/trunk/lib/fuzzer/FuzzerDataFlowTrace.cpp Fri Jun 14 15:34:30 2019
@@ -123,7 +123,7 @@ static Vector<uint8_t> DFTStringToVector
 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.




More information about the llvm-commits mailing list