aboutsummaryrefslogtreecommitdiff
path: root/reloc_elf.h
diff options
context:
space:
mode:
Diffstat (limited to 'reloc_elf.h')
-rw-r--r--reloc_elf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/reloc_elf.h b/reloc_elf.h
index 7fcdbd3..ebf2577 100644
--- a/reloc_elf.h
+++ b/reloc_elf.h
@@ -11,11 +11,11 @@
#include <vector>
#include "base/numerics/safe_conversions.h"
-#include "base/optional.h"
#include "components/zucchini/address_translator.h"
#include "components/zucchini/buffer_view.h"
#include "components/zucchini/image_utils.h"
#include "components/zucchini/type_elf.h"
+#include "third_party/abseil-cpp/absl/types/optional.h"
namespace zucchini {
@@ -68,7 +68,7 @@ class RelocReaderElf : public ReferenceReader {
rva_t GetRelocationTarget(elf::Elf64_Rel rel) const;
// ReferenceReader:
- base::Optional<Reference> GetNext() override;
+ absl::optional<Reference> GetNext() override;
private:
const ConstBufferView image_;