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/cmTarget.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/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index d22df65..fce361d 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -95,7 +95,8 @@ public: enum LinkLibraryType {GENERAL, DEBUG, OPTIMIZED}; typedef std::vector<std::pair<std::string,LinkLibraryType> > LinkLibraries; const LinkLibraries &GetLinkLibraries() {return m_LinkLibraries;} - const LinkLibraries &GetOriginalLinkLibraries() {return m_OriginalLinkLibraries;} + const LinkLibraries &GetOriginalLinkLibraries() + {return m_OriginalLinkLibraries;} /** * Clear the dependency information recorded for this target, if any. @@ -111,7 +112,8 @@ public: void AddLinkLibrary(const std::string& lib, LinkLibraryType llt); - void MergeLinkLibraries( cmMakefile& mf, const char* selfname, const LinkLibraries& libs ); + void MergeLinkLibraries( cmMakefile& mf, const char* selfname, + const LinkLibraries& libs ); const std::vector<std::string>& GetLinkDirectories(); @@ -251,7 +253,8 @@ private: /** * Maps a library name to its internal structure */ - typedef std::map< cmStdString, std::pair<cmStdString,LinkLibraryType> > LibTypeMap; + typedef std::map< cmStdString, std::pair<cmStdString,LinkLibraryType> > + LibTypeMap; /** * Inserts \a dep at the end of the dependency list of \a lib. |