Skip to content

Commit

Permalink
cppiterfools: fix build (#12574)
Browse files Browse the repository at this point in the history
Signed-off-by: David Korczynski <[email protected]>
  • Loading branch information
DavidKorczynski authored Oct 9, 2024
1 parent 53119ec commit 8a9bb87
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion projects/cppitertools/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
################################################################################

cp $SRC/fuzz_* .
$CXX $CXXFLAGS $LIB_FUZZING_ENGINE -I./ fuzz_cppitertools.cpp -std=c++17 -o $OUT/fuzz_cppitertools
$CXX $CXXFLAGS $LIB_FUZZING_ENGINE -I./ -I./cppitertools fuzz_cppitertools.cpp -std=c++17 -o $OUT/fuzz_cppitertools
1 change: 0 additions & 1 deletion projects/cppitertools/fuzz_cppitertools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ using iter::compress;
using iter::cycle;
using iter::groupby;


void FuzzChained(const uint8_t *data, size_t size) {
FuzzedDataProvider fdp(data, size);
std::vector<char> v;
Expand Down

0 comments on commit 8a9bb87

Please sign in to comment.