diff options
Diffstat (limited to 'include/lld/Core/SharedLibraryAtom.h')
-rw-r--r-- | include/lld/Core/SharedLibraryAtom.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/lld/Core/SharedLibraryAtom.h b/include/lld/Core/SharedLibraryAtom.h index 1b0c37c41138..7fec7a3e3d29 100644 --- a/include/lld/Core/SharedLibraryAtom.h +++ b/include/lld/Core/SharedLibraryAtom.h @@ -25,9 +25,7 @@ public: }; /// Returns shared library name used to load it at runtime. - /// On linux that is the DT_NEEDED name. /// On Darwin it is the LC_DYLIB_LOAD dylib name. - /// On Windows it is the DLL name that to be referred from .idata section. virtual StringRef loadName() const = 0; /// Returns if shared library symbol can be missing at runtime and if @@ -46,6 +44,8 @@ public: protected: SharedLibraryAtom() : Atom(definitionSharedLibrary) {} + + ~SharedLibraryAtom() override = default; }; } // namespace lld |