diff options
author | Vitaly Stakhovsky <vvs31415@users.noreply.gitlab.com> | 2024-03-17 23:00:00 (GMT) |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@users.noreply.gitlab.com> | 2024-03-17 23:05:37 (GMT) |
commit | 1a49b439a548a5ccc573e85c86ef42ece1d267ae (patch) | |
tree | 5cb159207f37bb6665f8f089330bbb868c11adf4 /Source/cmGlobalVisualStudioGenerator.cxx | |
parent | f440439dee558273a32e4efa39e10a9ff6b479d5 (diff) | |
download | CMake-1a49b439a548a5ccc573e85c86ef42ece1d267ae.zip CMake-1a49b439a548a5ccc573e85c86ef42ece1d267ae.tar.gz CMake-1a49b439a548a5ccc573e85c86ef42ece1d267ae.tar.bz2 |
Source: Use cmValue::IsOn and IsOff
Speed up a bit by calling members directly.
Diffstat (limited to 'Source/cmGlobalVisualStudioGenerator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudioGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudioGenerator.cxx b/Source/cmGlobalVisualStudioGenerator.cxx index 5305fec..6fdc32c 100644 --- a/Source/cmGlobalVisualStudioGenerator.cxx +++ b/Source/cmGlobalVisualStudioGenerator.cxx @@ -491,7 +491,7 @@ bool cmGlobalVisualStudioGenerator::FindMakeProgram(cmMakefile* mf) // Visual Studio generators know how to lookup their build tool // directly instead of needing a helper module to do it, so we // do not actually need to put CMAKE_MAKE_PROGRAM into the cache. - if (cmIsOff(mf->GetDefinition("CMAKE_MAKE_PROGRAM"))) { + if (mf->GetDefinition("CMAKE_MAKE_PROGRAM").IsOff()) { mf->AddDefinition("CMAKE_MAKE_PROGRAM", this->GetVSMakeProgram()); } return true; |