diff options
author | Patrick Gansterer <paroga@paroga.com> | 2013-08-04 16:22:22 (GMT) |
---|---|---|
committer | Patrick Gansterer <paroga@paroga.com> | 2013-08-05 11:38:28 (GMT) |
commit | 40a4302414e7dc51525f0b14159f0bebb45c9614 (patch) | |
tree | e10caf3320d86c9df3d9ba10f28e659a2dbea901 /Source/cmGlobalVisualStudio12Generator.cxx | |
parent | b02f09d4348afedbf9bd6d579344573e3b08b99f (diff) | |
download | CMake-40a4302414e7dc51525f0b14159f0bebb45c9614.zip CMake-40a4302414e7dc51525f0b14159f0bebb45c9614.tar.gz CMake-40a4302414e7dc51525f0b14159f0bebb45c9614.tar.bz2 |
VS12: Remove duplicated overload of UseFolderProperty()
cmGlobalVisualStudio11Generator generator already defines the same
function body, which makes the additional overload useless.
Diffstat (limited to 'Source/cmGlobalVisualStudio12Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio12Generator.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/cmGlobalVisualStudio12Generator.cxx b/Source/cmGlobalVisualStudio12Generator.cxx index 6669f94..3b1eb12 100644 --- a/Source/cmGlobalVisualStudio12Generator.cxx +++ b/Source/cmGlobalVisualStudio12Generator.cxx @@ -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(); -} |