From 5b95b72bb77402ea44f057fb838521bad13665f0 Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Tue, 4 Nov 2014 02:40:55 +0000 Subject: Remove virtual from a member function that's not overridden. llvm-svn: 221230 --- lld/include/lld/Core/DefinedAtom.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lld/include/lld') diff --git a/lld/include/lld/Core/DefinedAtom.h b/lld/include/lld/Core/DefinedAtom.h index ac16aa18493..65c0481e616 100644 --- a/lld/include/lld/Core/DefinedAtom.h +++ b/lld/include/lld/Core/DefinedAtom.h @@ -318,7 +318,7 @@ public: static ContentPermissions permissions(ContentType type); /// Utility function to check if the atom occupies file space - virtual bool occupiesDiskSpace() const { + bool occupiesDiskSpace() const { ContentType atomContentType = contentType(); return !(atomContentType == DefinedAtom::typeZeroFill || atomContentType == DefinedAtom::typeZeroFillFast || -- cgit v1.2.1