[lld-macho][nfc] Remove unnecessary vertical spacing
authorJez Ng <jezng@fb.com>
Sun, 27 Jun 2021 19:31:34 +0000 (15:31 -0400)
committerJez Ng <jezng@fb.com>
Fri, 2 Jul 2021 01:22:38 +0000 (21:22 -0400)
This makes NonLazyPointerSectionBase's style more in line with the rest
of the classes in its file.

lld/MachO/SyntheticSections.h

index cf464b8..b33d5e5 100644 (file)
@@ -113,19 +113,13 @@ public:
 class NonLazyPointerSectionBase : public SyntheticSection {
 public:
   NonLazyPointerSectionBase(const char *segname, const char *name);
-
   const llvm::SetVector<const Symbol *> &getEntries() const { return entries; }
-
   bool isNeeded() const override { return !entries.empty(); }
-
   uint64_t getSize() const override {
     return entries.size() * target->wordSize;
   }
-
   void writeTo(uint8_t *buf) const override;
-
   void addEntry(Symbol *sym);
-
   uint64_t getVA(uint32_t gotIndex) const {
     return addr + gotIndex * target->wordSize;
   }