From a267b99cd64a17781bf7af3fd6b53a4acb9c10ff Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Wed, 6 Oct 2010 15:00:52 -0400 Subject: [PATCH] Fix line lengths --- Source/cmake.cxx | 3 ++- Source/cmake.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 845ab9be4..37373aea3 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -524,7 +524,8 @@ void cmake::ReadListFile(const char *path) } // Parse the args -void cmake::SetArgs(const std::vector& args, bool directoriesSetBefore) +void cmake::SetArgs(const std::vector& args, + bool directoriesSetBefore) { bool directoriesSet = directoriesSetBefore; for(unsigned int i=1; i < args.size(); ++i) diff --git a/Source/cmake.h b/Source/cmake.h index 36c0f4a9f..9001748f3 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -212,7 +212,8 @@ class cmake bool CommandExists(const char* name) const; ///! Parse command line arguments - void SetArgs(const std::vector&, bool directoriesSetBefore = false); + void SetArgs(const std::vector&, + bool directoriesSetBefore = false); ///! Is this cmake running as a result of a TRY_COMPILE command bool GetIsInTryCompile() { return this->InTryCompile; }