aboutsummaryrefslogtreecommitdiff
path: root/reloc_elf_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'reloc_elf_unittest.cc')
-rw-r--r--reloc_elf_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/reloc_elf_unittest.cc b/reloc_elf_unittest.cc
index acbc186..ac5086a 100644
--- a/reloc_elf_unittest.cc
+++ b/reloc_elf_unittest.cc
@@ -85,7 +85,7 @@ class FakeImageWithReloc {
// Read all references and check.
std::vector<Reference> refs;
- for (base::Optional<Reference> ref = reader->GetNext(); ref.has_value();
+ for (absl::optional<Reference> ref = reader->GetNext(); ref.has_value();
ref = reader->GetNext()) {
refs.push_back(ref.value());
}