Remove virtual from a member function that's not overridden.

llvm-svn: 221230
This commit is contained in:
Rui Ueyama 2014-11-04 02:40:55 +00:00
parent d98c3abf9f
commit 5b95b72bb7
1 changed files with 1 additions and 1 deletions

View File

@ -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 ||