We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a72279 commit 2151058Copy full SHA for 2151058
absl/debugging/internal/elf_mem_image.cc
@@ -222,7 +222,7 @@ void ElfMemImage::Init(const void *base) {
222
reinterpret_cast<ElfW(Dyn) *>(dynamic_program_header->p_vaddr +
223
relocation);
224
for (; dynamic_entry->d_tag != DT_NULL; ++dynamic_entry) {
225
- const ElfW(Xword) value = dynamic_entry->d_un.d_val + relocation;
+ const auto value = dynamic_entry->d_un.d_val + relocation;
226
switch (dynamic_entry->d_tag) {
227
case DT_HASH:
228
hash_ = reinterpret_cast<ElfW(Word) *>(value);
0 commit comments