diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-10 16:13:15 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-10 16:13:15 (GMT) |
commit | 6b47b288678569a630c14af24200ec6f3736218a (patch) | |
tree | 046f59fe806476f6a057ea1627285f70fba055a2 /Source/cmMakefile.h | |
parent | e0be3c71257164b58ce5ae1a0399b1d5b7f2441a (diff) | |
download | CMake-6b47b288678569a630c14af24200ec6f3736218a.zip CMake-6b47b288678569a630c14af24200ec6f3736218a.tar.gz CMake-6b47b288678569a630c14af24200ec6f3736218a.tar.bz2 |
ENH: fix line length style stuff
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 6095cdb..8dd9163 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -217,7 +217,8 @@ public: /** * Add a subdirectory to the build. */ - void AddSubDirectory(const char*, bool includeTopLevel=true, bool preorder = false); + void AddSubDirectory(const char*, bool includeTopLevel=true, + bool preorder = false); void AddSubDirectory(const char* fullSrcDir,const char *fullBinDir, bool includeTopLevel, bool preorder, bool immediate); @@ -277,7 +278,8 @@ public: /** * Add a source group for consideration when adding a new source. */ - void AddSourceGroup(const char* name, const char* regex=0, const char* parent=0); + void AddSourceGroup(const char* name, const char* regex=0, + const char* parent=0); /** * Add an auxiliary directory to the build. @@ -576,7 +578,7 @@ public: */ void AddCommand(cmCommand* ); - ///! Enable support for the named language, if null then all languages are enabled. + ///! Enable support for named language, if nil then all languages are enabled. void EnableLanguage(std::vector<std::string>const& languages); /** @@ -713,8 +715,10 @@ private: void ReadSources(std::ifstream& fin, bool t); friend class cmMakeDepend; // make depend needs direct access // to the m_Sources array - void PrintStringVector(const char* s, const std::vector<std::pair<cmStdString, bool> >& v) const; - void PrintStringVector(const char* s, const std::vector<std::string>& v) const; + void PrintStringVector(const char* s, const + std::vector<std::pair<cmStdString, bool> >& v) const; + void PrintStringVector(const char* s, + const std::vector<std::string>& v) const; void AddDefaultDefinitions(); std::list<cmFunctionBlocker *> m_FunctionBlockers; |