소스 검색

STYLE: fix line lengths

Alex
Alexander Neundorf 18 년 전
부모
커밋
aee311a89d
5개의 변경된 파일28개의 추가작업 그리고 21개의 파일을 삭제
  1. 15 12
      Source/cmFileCommand.cxx
  2. 3 3
      Source/cmFindBase.cxx
  3. 3 1
      Source/cmFindBase.h
  4. 5 4
      Source/cmInstallTargetGenerator.cxx
  5. 2 1
      Source/cmTryRunCommand.cxx

+ 15 - 12
Source/cmFileCommand.cxx

@@ -1088,7 +1088,8 @@ void cmFileCommand::HandleInstallPermissions(cmFileInstaller& installer,
 }
 
 //----------------------------------------------------------------------------
-void cmFileCommand::GetTargetTypeFromString(const std::string& stype, int& itype) const
+void cmFileCommand
+::GetTargetTypeFromString(const std::string& stype, int& itype) const
 {
   if ( stype == "EXECUTABLE" )
     {
@@ -1118,7 +1119,8 @@ void cmFileCommand::GetTargetTypeFromString(const std::string& stype, int& itype
 
 
 //----------------------------------------------------------------------------
-bool cmFileCommand::HandleInstallDestination(cmFileInstaller& installer, std::string& destination)
+bool cmFileCommand::HandleInstallDestination(cmFileInstaller& installer, 
+                                             std::string& destination)
 {
   if ( destination.size() < 2 )
     {
@@ -1240,15 +1242,15 @@ bool cmFileCommand::HandleInstallCommand(std::vector<std::string> const& args)
 
 //----------------------------------------------------------------------------
 bool cmFileCommand::ParseInstallArgs(std::vector<std::string> const& args,
-                                       cmFileInstaller& installer,
-                                       std::set<cmStdString>& components,
-                                       std::set<cmStdString>& configurations,
-                                       std::map<cmStdString, const char*>& properties,
-                                       int& itype,
-                                       std::string& rename,
-                                       std::string& destination,
-                                       std::vector<std::string>& files,
-                                       bool& optional)
+                                cmFileInstaller& installer,
+                                std::set<cmStdString>& components,
+                                std::set<cmStdString>& configurations,
+                                std::map<cmStdString, const char*>& properties,
+                                int& itype,
+                                std::string& rename,
+                                std::string& destination,
+                                std::vector<std::string>& files,
+                                bool& optional)
 {
     std::string stype = "FILES";
     bool doing_files = false;
@@ -1554,7 +1556,8 @@ bool cmFileCommand::ParseInstallArgs(std::vector<std::string> const& args,
         }
       if(files.size() > 1)
         {
-        this->SetError("INSTALL option RENAME may be used only with one file.");
+        this->SetError("INSTALL option RENAME may be used only with "
+                       "one file.");
         return false;
         }
       }

+ 3 - 3
Source/cmFindBase.cxx

@@ -252,10 +252,10 @@ bool cmFindBase::ParseArguments(std::vector<std::string> const& argsIn)
     }
   this->AlreadyInCache = false; 
   
-  
   std::string findRootPathVar = "CMAKE_FIND_ROOT_PATH_MODE_";
   findRootPathVar += this->CMakePathName;
-  std::string rootPathMode = this->Makefile->GetSafeDefinition(findRootPathVar.c_str());
+  std::string rootPathMode = 
+              this->Makefile->GetSafeDefinition(findRootPathVar.c_str());
   if (rootPathMode=="NEVER")
     {
     this->FindRootPathMode = RootPathModeNoRootPath;
@@ -496,7 +496,7 @@ void cmFindBase::HandleCMakeFindRootPath()
     return;
     }
 
-  const char* rootPath =  this->Makefile->GetDefinition("CMAKE_FIND_ROOT_PATH");
+  const char* rootPath = this->Makefile->GetDefinition("CMAKE_FIND_ROOT_PATH");
   if ((rootPath == 0) || (strlen(rootPath) == 0))
     {
     return;

+ 3 - 1
Source/cmFindBase.h

@@ -39,7 +39,9 @@ public:
   virtual const char* GetFullDocumentation()
     {return this->GenericDocumentation.c_str();}
 
-  enum RootPathMode { RootPathModeBoth, RootPathModeOnlyRootPath, RootPathModeNoRootPath };
+  enum RootPathMode { RootPathModeBoth, 
+                      RootPathModeOnlyRootPath, 
+                      RootPathModeNoRootPath };
   
 protected:
   void PrintFindStuff();

+ 5 - 4
Source/cmInstallTargetGenerator.cxx

@@ -459,7 +459,7 @@ void cmInstallTargetGenerator
 }
 
 void cmInstallTargetGenerator::AddStripRule(std::ostream& os, 
-                                            const std::string& destinationFilename)
+                                        const std::string& destinationFilename)
 {
 
   // Don't handle OSX Bundles.
@@ -482,8 +482,8 @@ void cmInstallTargetGenerator::AddStripRule(std::ostream& os,
 }
 
 void cmInstallTargetGenerator::AddRanlibRule(std::ostream& os, 
-                                             cmTarget::TargetType type,
-                                             const std::string& destinationFilename)
+                                        cmTarget::TargetType type,
+                                        const std::string& destinationFilename)
 {
   // Static libraries need ranlib on this platform.
   if(type != cmTarget::STATIC_LIBRARY)
@@ -498,7 +498,8 @@ void cmInstallTargetGenerator::AddRanlibRule(std::ostream& os,
     return;
     }
 
-  std::string ranlib = this->Target->GetMakefile()->GetRequiredDefinition("CMAKE_RANLIB");
+  std::string ranlib = this->Target->GetMakefile()->GetRequiredDefinition(
+                                                    "CMAKE_RANLIB");
   if (!ranlib.size())
     {
     return;

+ 2 - 1
Source/cmTryRunCommand.cxx

@@ -82,7 +82,8 @@ bool cmTryRunCommand::InitialPass(std::vector<std::string> const& argv)
     {
     int retVal = -1;
     std::string output;
-    std::string executableSuffix=this->Makefile->GetDefinition("CMAKE_EXECUTABLE_SUFFIX");
+    std::string executableSuffix=this->Makefile->GetDefinition(
+                                                 "CMAKE_EXECUTABLE_SUFFIX");
     std::string command1 = binaryDirectory;
     std::vector<std::string> attemptedPaths;
     command1 += "/cmTryCompileExec";