diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-03 08:11:05 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-05-04 20:32:20 (GMT) |
commit | 13981f20688279b4e10faca67b7020946c9ef733 (patch) | |
tree | be40e3f590650a6c50c6fad611223ade3e9aebc0 /Source/cmPolicies.cxx | |
parent | 23e2bcc8dba21b532ebbde20518f8a9f2d312103 (diff) | |
download | CMake-13981f20688279b4e10faca67b7020946c9ef733.zip CMake-13981f20688279b4e10faca67b7020946c9ef733.tar.gz CMake-13981f20688279b4e10faca67b7020946c9ef733.tar.bz2 |
cmPolicies: Make all API static.
Diffstat (limited to 'Source/cmPolicies.cxx')
-rw-r--r-- | Source/cmPolicies.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmPolicies.cxx b/Source/cmPolicies.cxx index 51bcde3..c95520f 100644 --- a/Source/cmPolicies.cxx +++ b/Source/cmPolicies.cxx @@ -243,7 +243,7 @@ bool cmPolicies::ApplyPolicyVersion(cmMakefile *mf, { if (isPolicyNewerThan(pid, majorVer, minorVer, patchVer)) { - if(this->GetPolicyStatus(pid) == cmPolicies::REQUIRED_ALWAYS) + if(cmPolicies::GetPolicyStatus(pid) == cmPolicies::REQUIRED_ALWAYS) { ancientPolicies.push_back(pid); } |