[cmake-commits] martink committed cmPolicies.cxx 1.3 1.4 cmPolicies.h
1.3 1.4
cmake-commits at cmake.org
cmake-commits at cmake.org
Sun Mar 2 09:03:35 EST 2008
Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv5613/Source
Modified Files:
cmPolicies.cxx cmPolicies.h
Log Message:
ENH: revert dumb change
Index: cmPolicies.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmPolicies.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- cmPolicies.h 2 Mar 2008 13:36:18 -0000 1.3
+++ cmPolicies.h 2 Mar 2008 14:03:33 -0000 1.4
@@ -78,7 +78,7 @@
std::string GetRequiredPolicyError(cmPolicies::PolicyID id);
private:
- std::map<cmPolicies::PolicyID,cmPolicy *> PolicyMap;
+ std::map<cmPolicies::PolicyID,cmPolicy *> Policies;
std::map<std::string,cmPolicies::PolicyID> PolicyStringMap;
};
Index: cmPolicies.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmPolicies.cxx,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- cmPolicies.cxx 2 Mar 2008 13:36:18 -0000 1.3
+++ cmPolicies.cxx 2 Mar 2008 14:03:33 -0000 1.4
@@ -118,8 +118,8 @@
{
// free the policies
std::map<cmPolicies::PolicyID,cmPolicy *>::iterator i
- = this->PolicyMap.begin();
- for (;i != this->PolicyMap.end(); ++i)
+ = this->Policies.begin();
+ for (;i != this->Policies.end(); ++i)
{
delete i->second;
}
@@ -135,14 +135,14 @@
cmPolicies::PolicyStatus status)
{
// a policy must be unique and can only be defined once
- if (this->PolicyMap.find(iD) != this->PolicyMap.end())
+ if (this->Policies.find(iD) != this->Policies.end())
{
cmSystemTools::Error("Attempt to redefine a CMake policy for policy "
"ID ", this->GetPolicyIDString(iD).c_str());
return;
}
- this->PolicyMap[iD] = new cmPolicy(iD, idString,
+ this->Policies[iD] = new cmPolicy(iD, idString,
shortDescription,
longDescription,
majorVersionIntroduced,
@@ -187,8 +187,8 @@
// now loop over all the policies and set them as appropriate
std::map<cmPolicies::PolicyID,cmPolicy *>::iterator i
- = this->PolicyMap.begin();
- for (;i != this->PolicyMap.end(); ++i)
+ = this->Policies.begin();
+ for (;i != this->Policies.end(); ++i)
{
if (i->second->IsPolicyNewerThan(majorVer,minorVer,patchVer))
{
@@ -214,7 +214,7 @@
{
// if they are setting a feature to anything other than OLD or WARN and the
// feature is not known about then that is an error
- if (this->PolicyMap.find(id) == this->PolicyMap.end())
+ if (this->Policies.find(id) == this->Policies.end())
{
if (status == cmPolicies::WARN ||
status == cmPolicies::OLD)
@@ -235,7 +235,7 @@
// setting it to WARN or OLD when the feature is REQUIRED_ALWAYS
if ((status == cmPolicies::WARN ||
status == cmPolicies::OLD) &&
- this->PolicyMap[id]->Status == cmPolicies::REQUIRED_ALWAYS)
+ this->Policies[id]->Status == cmPolicies::REQUIRED_ALWAYS)
{
cmOStringStream error;
error <<
@@ -244,7 +244,7 @@
"question is feature " <<
id <<
" which had new behavior introduced in CMake version " <<
- this->PolicyMap[id]->GetVersionString() <<
+ this->Policies[id]->GetVersionString() <<
" please either update your CMakeLists files to conform to " <<
"the new behavior " <<
"or use an older version of CMake that still supports " <<
@@ -263,7 +263,7 @@
{
// if they are setting a feature to anything other than OLD or WARN and the
// feature is not known about then that is an error
- if (this->PolicyMap.find(id) == this->PolicyMap.end())
+ if (this->Policies.find(id) == this->Policies.end())
{
if (status == cmPolicies::WARN ||
status == cmPolicies::OLD)
@@ -284,8 +284,8 @@
// setting it to WARN or OLD when the feature is REQUIRED_ALWAYS
if ((status == cmPolicies::WARN ||
status == cmPolicies::OLD) &&
- (this->PolicyMap[id]->Status == cmPolicies::REQUIRED_ALWAYS ||
- this->PolicyMap[id]->Status == cmPolicies::REQUIRED_IF_USED))
+ (this->Policies[id]->Status == cmPolicies::REQUIRED_ALWAYS ||
+ this->Policies[id]->Status == cmPolicies::REQUIRED_IF_USED))
{
cmOStringStream error;
error <<
@@ -294,7 +294,7 @@
"question is feature " <<
id <<
" which had new behavior introduced in CMake version " <<
- this->PolicyMap[id]->GetVersionString() <<
+ this->Policies[id]->GetVersionString() <<
" please either update your CMakeLists files to conform to " <<
"the new behavior " <<
"or use an older version of CMake that still supports " <<
@@ -326,8 +326,8 @@
std::string cmPolicies::GetPolicyIDString(cmPolicies::PolicyID pid)
{
std::map<cmPolicies::PolicyID,cmPolicy *>::iterator pos =
- this->PolicyMap.find(pid);
- if (pos == this->PolicyMap.end())
+ this->Policies.find(pid);
+ if (pos == this->Policies.end())
{
return "";
}
@@ -339,8 +339,8 @@
std::string cmPolicies::GetPolicyWarning(cmPolicies::PolicyID id)
{
std::map<cmPolicies::PolicyID,cmPolicy *>::iterator pos =
- this->PolicyMap.find(id);
- if (pos == this->PolicyMap.end())
+ this->Policies.find(id);
+ if (pos == this->Policies.end())
{
cmSystemTools::Error(
"Request for warning text for undefined policy!");
@@ -367,8 +367,8 @@
std::string cmPolicies::GetRequiredPolicyError(cmPolicies::PolicyID id)
{
std::map<cmPolicies::PolicyID,cmPolicy *>::iterator pos =
- this->PolicyMap.find(id);
- if (pos == this->PolicyMap.end())
+ this->Policies.find(id);
+ if (pos == this->Policies.end())
{
cmSystemTools::Error(
"Request for error text for undefined policy!");
@@ -399,8 +399,8 @@
{
// if the policy is not know then what?
std::map<cmPolicies::PolicyID,cmPolicy *>::iterator pos =
- this->PolicyMap.find(id);
- if (pos == this->PolicyMap.end())
+ this->Policies.find(id);
+ if (pos == this->Policies.end())
{
// TODO is this right?
return cmPolicies::WARN;
More information about the Cmake-commits
mailing list