aboutsummaryrefslogtreecommitdiff
path: root/reloc_win32_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'reloc_win32_unittest.cc')
-rw-r--r--reloc_win32_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/reloc_win32_unittest.cc b/reloc_win32_unittest.cc
index 1b9894f..e3d33ca 100644
--- a/reloc_win32_unittest.cc
+++ b/reloc_win32_unittest.cc
@@ -219,7 +219,7 @@ TEST_F(RelocUtilsWin32Test, ReadWrite) {
// 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());
}