VS12: Remove duplicated overload of UseFolderProperty()

cmGlobalVisualStudio11Generator generator already defines the same
function body, which makes the additional overload useless.
This commit is contained in:
Patrick Gansterer 2013-08-04 18:22:22 +02:00
parent b02f09d434
commit 40a4302414
2 changed files with 0 additions and 10 deletions

View File

@ -100,12 +100,3 @@ cmLocalGenerator *cmGlobalVisualStudio12Generator::CreateLocalGenerator()
lg->SetGlobalGenerator(this);
return lg;
}
//----------------------------------------------------------------------------
bool cmGlobalVisualStudio12Generator::UseFolderProperty()
{
// Intentionally skip over the parent class implementation and call the
// grand-parent class's implementation. Folders are not supported by the
// Express editions in VS10 and earlier, but they are in VS12 Express.
return cmGlobalVisualStudio8Generator::UseFolderProperty();
}

View File

@ -33,7 +33,6 @@ public:
virtual std::string GetUserMacrosDirectory() { return ""; }
protected:
virtual const char* GetIDEVersion() { return "12.0"; }
bool UseFolderProperty();
private:
class Factory;
};