diff options
author | Rui Ueyama <ruiu@google.com> | 2017-02-27 03:10:06 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2017-02-27 03:10:06 +0000 |
commit | 0fb284aa35b5269883800b776b92dc4b09dc564d (patch) | |
tree | 4f947cf7b949e22b8918c284b0fb442409f7d3d4 | |
parent | 945055aabfb5decd9a9525ef04beee681f7b9815 (diff) | |
download | bcm5719-llvm-0fb284aa35b5269883800b776b92dc4b09dc564d.tar.gz bcm5719-llvm-0fb284aa35b5269883800b776b92dc4b09dc564d.zip |
Remove unnecessary "this->".
llvm-svn: 296315
-rw-r--r-- | lld/ELF/SyntheticSections.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/ELF/SyntheticSections.h b/lld/ELF/SyntheticSections.h index 69f5cc81494..a8545a18967 100644 --- a/lld/ELF/SyntheticSections.h +++ b/lld/ELF/SyntheticSections.h @@ -451,7 +451,7 @@ public: GnuHashTableSection(); void finalizeContents() override; void writeTo(uint8_t *Buf) override; - size_t getSize() const override { return this->Size; } + size_t getSize() const override { return Size; } // Adds symbols to the hash table. // Sorts the input to satisfy GNU hash section requirements. @@ -486,7 +486,7 @@ public: HashTableSection(); void finalizeContents() override; void writeTo(uint8_t *Buf) override; - size_t getSize() const override { return this->Size; } + size_t getSize() const override { return Size; } private: size_t Size = 0; |