[ELF] Drop const qualifier to fix -Wrange-loop-analysis. NFC
authorFangrui Song <maskray@google.com>
Sat, 4 Jan 2020 19:53:17 +0000 (11:53 -0800)
committerFangrui Song <maskray@google.com>
Sat, 4 Jan 2020 20:24:39 +0000 (12:24 -0800)
commit085898d469ab782f0a26f119b109aa8eb5d37745
tree479d0a9153242d442c5ddfec7184653947d4799b
parentd12f2a2998450213f065ee3c9b21275416cb7f90
[ELF] Drop const qualifier to fix -Wrange-loop-analysis. NFC

```
lld/ELF/Relocations.cpp:1622:56: warning: loop variable 'ts' of type 'const std::pair<ThunkSection *, uint32_t>' (aka 'const pair<lld::elf::ThunkSection *, unsigned int>') creates a copy from type 'const std::pair<ThunkSection *, uint32_t>' [-Wrange-loop-analysis]
        for (const std::pair<ThunkSection *, uint32_t> ts : isd->thunkSections)
```

Drop const qualifier to fix -Wrange-loop-analysis.
We can make -Wrange-loop-analysis warnings (DiagnoseForRangeConstVariableCopies) on `const A` more
permissive on more types (e.g. POD -> trivially copyable), unfortunately it will not make std::pair
good, because `constexpr pair& operator=(const pair& p);` is unfortunately user-defined.

Reviewed By: Mordante

Differential Revision: https://reviews.llvm.org/D72211
lld/ELF/Relocations.cpp