aboutsummaryrefslogtreecommitdiff
path: root/fuzzers/patch_fuzzer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'fuzzers/patch_fuzzer.cc')
-rw-r--r--fuzzers/patch_fuzzer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/fuzzers/patch_fuzzer.cc b/fuzzers/patch_fuzzer.cc
index 2d1c9b7..83bebcf 100644
--- a/fuzzers/patch_fuzzer.cc
+++ b/fuzzers/patch_fuzzer.cc
@@ -5,15 +5,15 @@
#include <stddef.h>
#include <stdint.h>
-#include "base/optional.h"
#include "components/zucchini/buffer_view.h"
#include "components/zucchini/patch_reader.h"
+#include "third_party/abseil-cpp/absl/types/optional.h"
// Entry point for LibFuzzer.
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
logging::SetMinLogLevel(3); // Disable console spamming.
zucchini::ConstBufferView patch(data, size);
- base::Optional<zucchini::EnsemblePatchReader> patch_reader =
+ absl::optional<zucchini::EnsemblePatchReader> patch_reader =
zucchini::EnsemblePatchReader::Create(patch);
return 0;
}