diff options
| author | Kostya Serebryany <kcc@google.com> | 2019-06-14 22:34:30 +0000 |
|---|---|---|
| committer | Kostya Serebryany <kcc@google.com> | 2019-06-14 22:34:30 +0000 |
| commit | 2fa6838e5fe93c9eb492e8bc9d9b2295cc2f9fe2 (patch) | |
| tree | 82b2c4ff61cf3ed2cfa2b5ddb257999e97100445 /compiler-rt/lib/fuzzer | |
| parent | a704a8f28c4f0ece30f77ab3faf70151bffb4b23 (diff) | |
| download | bcm5719-llvm-2fa6838e5fe93c9eb492e8bc9d9b2295cc2f9fe2.tar.gz bcm5719-llvm-2fa6838e5fe93c9eb492e8bc9d9b2295cc2f9fe2.zip | |
[libFuzzer] fix -Werror build
llvm-svn: 363469
Diffstat (limited to 'compiler-rt/lib/fuzzer')
| -rw-r--r-- | compiler-rt/lib/fuzzer/FuzzerDataFlowTrace.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/fuzzer/FuzzerDataFlowTrace.cpp b/compiler-rt/lib/fuzzer/FuzzerDataFlowTrace.cpp index bd249c4b6ca..c7200a3c26b 100644 --- a/compiler-rt/lib/fuzzer/FuzzerDataFlowTrace.cpp +++ b/compiler-rt/lib/fuzzer/FuzzerDataFlowTrace.cpp @@ -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. |

