diff options
Diffstat (limited to 'lld/ELF/OutputSections.cpp')
| -rw-r--r-- | lld/ELF/OutputSections.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/OutputSections.cpp b/lld/ELF/OutputSections.cpp index b697e1a3484..c7b0182d834 100644 --- a/lld/ELF/OutputSections.cpp +++ b/lld/ELF/OutputSections.cpp @@ -134,7 +134,7 @@ template <class ELFT> void OutputSection::assignOffsets() { for (InputSection *S : Sections) { Off = alignTo(Off, S->Alignment); S->OutSecOff = Off; - Off += S->template getSize<ELFT>(); + Off += S->getSize(); } this->Size = Off; } |

