浏览代码

Fix line lengths

Ben Boeckel 15 年之前
父节点
当前提交
a267b99cd6
共有 2 个文件被更改,包括 4 次插入2 次删除
  1. 2 1
      Source/cmake.cxx
  2. 2 1
      Source/cmake.h

+ 2 - 1
Source/cmake.cxx

@@ -524,7 +524,8 @@ void cmake::ReadListFile(const char *path)
 }
 
 // Parse the args
-void cmake::SetArgs(const std::vector<std::string>& args, bool directoriesSetBefore)
+void cmake::SetArgs(const std::vector<std::string>& args,
+                    bool directoriesSetBefore)
 {
   bool directoriesSet = directoriesSetBefore;
   for(unsigned int i=1; i < args.size(); ++i)

+ 2 - 1
Source/cmake.h

@@ -212,7 +212,8 @@ class cmake
   bool CommandExists(const char* name) const;
     
   ///! Parse command line arguments
-  void SetArgs(const std::vector<std::string>&, bool directoriesSetBefore = false);
+  void SetArgs(const std::vector<std::string>&,
+               bool directoriesSetBefore = false);
 
   ///! Is this cmake running as a result of a TRY_COMPILE command
   bool GetIsInTryCompile() { return this->InTryCompile; }