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:
parent
b02f09d434
commit
40a4302414
|
@ -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();
|
||||
}
|
||||
|
|
|
@ -33,7 +33,6 @@ public:
|
|||
virtual std::string GetUserMacrosDirectory() { return ""; }
|
||||
protected:
|
||||
virtual const char* GetIDEVersion() { return "12.0"; }
|
||||
bool UseFolderProperty();
|
||||
private:
|
||||
class Factory;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue