From: Rui Ueyama Date: Tue, 4 Nov 2014 02:40:55 +0000 (+0000) Subject: Remove virtual from a member function that's not overridden. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5b95b72bb77402ea44f057fb838521bad13665f0;p=platform%2Fupstream%2Fllvm.git Remove virtual from a member function that's not overridden. llvm-svn: 221230 --- diff --git a/lld/include/lld/Core/DefinedAtom.h b/lld/include/lld/Core/DefinedAtom.h index ac16aa1..65c0481 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 ||