diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-04-07 19:46:46 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-07-21 07:25:32 (GMT) |
commit | 28f2d12a055e025aa0ddeb9842f204f29181eaff (patch) | |
tree | c72caeac0330934a280f3a014688b43c55a11eea /Source/cmCommand.h | |
parent | de77d355ac1808164b7247290f45b8133ce1246b (diff) | |
download | CMake-28f2d12a055e025aa0ddeb9842f204f29181eaff.zip CMake-28f2d12a055e025aa0ddeb9842f204f29181eaff.tar.gz CMake-28f2d12a055e025aa0ddeb9842f204f29181eaff.tar.bz2 |
cmCommand: De-virtualize function InvokeInitialPass
Diffstat (limited to 'Source/cmCommand.h')
-rw-r--r-- | Source/cmCommand.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCommand.h b/Source/cmCommand.h index 9e978b3..bcb178d 100644 --- a/Source/cmCommand.h +++ b/Source/cmCommand.h @@ -52,8 +52,8 @@ public: * encountered in the CMakeLists.txt file. It expands the command's * arguments and then invokes the InitialPass. */ - virtual bool InvokeInitialPass(const std::vector<cmListFileArgument>& args, - cmExecutionStatus& status); + bool InvokeInitialPass(const std::vector<cmListFileArgument>& args, + cmExecutionStatus& status); /** * This is called when the command is first encountered in |