diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-09-15 18:50:11 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-05 16:43:18 (GMT) |
commit | 2eca0559881c36061f84ea4fcd955ac32d9d427a (patch) | |
tree | f6d40fd6892da7a2a11502ed1921cdc843e2e227 | |
parent | 21f428f4c0adf7045e852be30739cd1243aa96fe (diff) | |
download | CMake-2eca0559881c36061f84ea4fcd955ac32d9d427a.zip CMake-2eca0559881c36061f84ea4fcd955ac32d9d427a.tar.gz CMake-2eca0559881c36061f84ea4fcd955ac32d9d427a.tar.bz2 |
cmGlobalGenerator: De-virtualize Compute().
It now implements the NVI pattern.
-rw-r--r-- | Source/cmGlobalGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index e73aac2..f233f1d 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -83,7 +83,7 @@ public: */ virtual void Configure(); - virtual bool Compute(); + bool Compute(); virtual void AddExtraIDETargets() {} enum TargetTypes { |