summaryrefslogtreecommitdiff
path: root/lld/ELF/Writer.h
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2016-07-20 19:36:41 +0000
committerRui Ueyama <ruiu@google.com>2016-07-20 19:36:41 +0000
commitd9a6c4c985aace3a438f546251b13be9da5f668a (patch)
treefeb7fbe4af89075a796628125b50475cd7834962 /lld/ELF/Writer.h
parent2e8864fd43ef839e21bea559757b2caeacee3ccb (diff)
Function names should start with lowercase letters.
Diffstat (limited to 'lld/ELF/Writer.h')
-rw-r--r--lld/ELF/Writer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/Writer.h b/lld/ELF/Writer.h
index 256d74bf431..6ded7c64f27 100644
--- a/lld/ELF/Writer.h
+++ b/lld/ELF/Writer.h
@@ -37,7 +37,7 @@ uint32_t toPhdrFlags(uint64_t Flags);
template<class ELFT>
struct PhdrEntry {
PhdrEntry(unsigned Type, unsigned Flags);
- void AddSec(OutputSectionBase<ELFT> *Sec);
+ void add(OutputSectionBase<ELFT> *Sec);
typename ELFT::Phdr H = {};
OutputSectionBase<ELFT> *First = nullptr;