From 37485130cc21d6bc818c6255517e6d499a1b4f59 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 2 May 2020 03:38:28 +0200 Subject: [PATCH] Fix harmless warning about multiline comment in fuzzer runner Don't embed backslash in multiline C++ comment. --- tests/fuzz/runner.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/fuzz/runner.cpp b/tests/fuzz/runner.cpp index 240ed72dd7..8f1990f3e3 100644 --- a/tests/fuzz/runner.cpp +++ b/tests/fuzz/runner.cpp @@ -12,8 +12,7 @@ // fuzzing. To do this, link the fuzzer code with this file and run it with the // file name containing the test data. E.g. an example use: // -// $ g++ -g -fsanitize=undefined -c tests/fuzz/{zip,runner}.cpp \ -// `wx-config --cxxflags --libs base` +// $ g++ -g -fsanitize=undefined tests/fuzz/{zip,runner}.cpp `wx-config --cxxflags --libs base` // $ ./a.out testcase-found-by-libfuzzer #include "wx/buffer.h"