This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  590a70bb2e72ef58c5fd942a3b4ec23def5f06ea (commit)
       via  5916645064bc3e513bf76a2fc61a2b6f1db9b98b (commit)
      from  7de39b6bf2e8de4e69f59dabcd50bcb370573ad1 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=590a70bb2e72ef58c5fd942a3b4ec23def5f06ea
commit 590a70bb2e72ef58c5fd942a3b4ec23def5f06ea
Merge: 7de39b6 5916645
Author:     Stephen Kelly <[email protected]>
AuthorDate: Wed Aug 28 12:12:24 2013 -0400
Commit:     CMake Topic Stage <[email protected]>
CommitDate: Wed Aug 28 12:12:24 2013 -0400

    Merge topic 'fix-style' into next
    
    5916645 Fix some indentation problems in cmPolicies.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=5916645064bc3e513bf76a2fc61a2b6f1db9b98b
commit 5916645064bc3e513bf76a2fc61a2b6f1db9b98b
Author:     Stephen Kelly <[email protected]>
AuthorDate: Wed Aug 28 18:06:27 2013 +0200
Commit:     Stephen Kelly <[email protected]>
CommitDate: Wed Aug 28 18:06:27 2013 +0200

    Fix some indentation problems in cmPolicies.

diff --git a/Source/cmPolicies.cxx b/Source/cmPolicies.cxx
index a823f05..f9197e0 100644
--- a/Source/cmPolicies.cxx
+++ b/Source/cmPolicies.cxx
@@ -27,11 +27,11 @@ public:
             cmPolicies::PolicyStatus status)
   {
     if (!idString || !shortDescription || ! longDescription)
-    {
+      {
       cmSystemTools::Error("Attempt to define a policy without "
         "all parameters being specified!");
       return;
-    }
+      }
     this->ID = iD;
     this->IDString = idString;
     this->ShortDescription = shortDescription;
@@ -61,29 +61,29 @@ public:
                          unsigned int tweakV)
   {
     if (majorV < this->MajorVersionIntroduced)
-    {
+      {
       return true;
-    }
+      }
     if (majorV > this->MajorVersionIntroduced)
-    {
+      {
       return false;
-    }
+      }
     if (minorV < this->MinorVersionIntroduced)
-    {
+      {
       return true;
-    }
+      }
     if (minorV > this->MinorVersionIntroduced)
-    {
+      {
       return false;
-    }
+      }
     if (patchV < this->PatchVersionIntroduced)
-    {
+      {
       return true;
-    }
+      }
     if (patchV > this->PatchVersionIntroduced)
-    {
+      {
       return false;
-    }
+      }
     return (tweakV < this->TweakVersionIntroduced);
   }
 
@@ -609,9 +609,9 @@ cmPolicies::~cmPolicies()
   std::map<cmPolicies::PolicyID,cmPolicy *>::iterator i
     = this->Policies.begin();
   for (;i != this->Policies.end(); ++i)
-  {
+    {
     delete i->second;
-  }
+    }
 }
 
 void cmPolicies::DefinePolicy(cmPolicies::PolicyID iD,
@@ -626,11 +626,11 @@ void cmPolicies::DefinePolicy(cmPolicies::PolicyID iD,
 {
   // a policy must be unique and can only be defined once
   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->Policies[iD] = new cmPolicy(iD, idString,
                                     shortDescription,
@@ -784,15 +784,15 @@ bool cmPolicies::GetPolicyDefault(cmMakefile* mf, 
std::string const& policy,
 bool cmPolicies::GetPolicyID(const char *id, cmPolicies::PolicyID &pid)
 {
   if (!id || strlen(id) < 1)
-  {
+    {
     return false;
-  }
+    }
   std::map<std::string,cmPolicies::PolicyID>::iterator pos =
     this->PolicyStringMap.find(id);
   if (pos == this->PolicyStringMap.end())
-  {
+    {
     return false;
-  }
+    }
   pid = pos->second;
   return true;
 }
@@ -802,9 +802,9 @@ std::string 
cmPolicies::GetPolicyIDString(cmPolicies::PolicyID pid)
   std::map<cmPolicies::PolicyID,cmPolicy *>::iterator pos =
     this->Policies.find(pid);
   if (pos == this->Policies.end())
-  {
+    {
     return "";
-  }
+    }
   return pos->second->IDString;
 }
 
@@ -815,11 +815,11 @@ std::string 
cmPolicies::GetPolicyWarning(cmPolicies::PolicyID id)
   std::map<cmPolicies::PolicyID,cmPolicy *>::iterator pos =
     this->Policies.find(id);
   if (pos == this->Policies.end())
-  {
+    {
     cmSystemTools::Error(
       "Request for warning text for undefined policy!");
     return "Request for warning text for undefined policy!";
-  }
+    }
 
   cmOStringStream msg;
   msg <<
@@ -839,11 +839,11 @@ std::string 
cmPolicies::GetRequiredPolicyError(cmPolicies::PolicyID id)
   std::map<cmPolicies::PolicyID,cmPolicy *>::iterator pos =
     this->Policies.find(id);
   if (pos == this->Policies.end())
-  {
+    {
     cmSystemTools::Error(
       "Request for error text for undefined policy!");
     return "Request for error text for undefined policy!";
-  }
+    }
 
   cmOStringStream error;
   error <<
@@ -869,10 +869,10 @@ cmPolicies::GetPolicyStatus(cmPolicies::PolicyID id)
   std::map<cmPolicies::PolicyID,cmPolicy *>::iterator pos =
     this->Policies.find(id);
   if (pos == this->Policies.end())
-  {
+    {
     // TODO is this right?
     return cmPolicies::WARN;
-  }
+    }
 
   return pos->second->Status;
 }
@@ -883,7 +883,7 @@ void 
cmPolicies::GetDocumentation(std::vector<cmDocumentationEntry>& v)
   std::map<cmPolicies::PolicyID,cmPolicy *>::iterator i
     = this->Policies.begin();
   for (;i != this->Policies.end(); ++i)
-  {
+    {
     cmOStringStream full;
     full << i->second->LongDescription;
     full << "\nThis policy was introduced in CMake version ";
@@ -920,7 +920,7 @@ void 
cmPolicies::GetDocumentation(std::vector<cmDocumentationEntry>& v)
                            i->second->ShortDescription.c_str(),
                            full.str().c_str());
     v.push_back(e);
-  }
+    }
 }
 
 //----------------------------------------------------------------------------

-----------------------------------------------------------------------

Summary of changes:
 Source/cmPolicies.cxx |   64 ++++++++++++++++++++++++------------------------
 1 files changed, 32 insertions(+), 32 deletions(-)


hooks/post-receive
-- 
CMake
_______________________________________________
Cmake-commits mailing list
[email protected]
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits

Reply via email to