target_link_libraries: Trim trailing whitespace

This commit is contained in:
Stephen Kelly 2011-11-02 12:43:01 +01:00 committed by Brad King
parent 61c69d3fbb
commit cf64218eeb
1 changed files with 6 additions and 6 deletions

View File

@ -19,7 +19,7 @@
* *
* cmTargetLinkLibrariesCommand is used to specify a list of libraries to link * cmTargetLinkLibrariesCommand is used to specify a list of libraries to link
* into executable(s) or shared objects. The names of the libraries * into executable(s) or shared objects. The names of the libraries
* should be those defined by the LIBRARY(library) command(s). * should be those defined by the LIBRARY(library) command(s).
*/ */
class cmTargetLinkLibrariesCommand : public cmCommand class cmTargetLinkLibrariesCommand : public cmCommand
{ {
@ -27,7 +27,7 @@ public:
/** /**
* This is a virtual constructor for the command. * This is a virtual constructor for the command.
*/ */
virtual cmCommand* Clone() virtual cmCommand* Clone()
{ {
return new cmTargetLinkLibrariesCommand; return new cmTargetLinkLibrariesCommand;
} }
@ -47,12 +47,12 @@ public:
/** /**
* Succinct documentation. * Succinct documentation.
*/ */
virtual const char* GetTerseDocumentation() virtual const char* GetTerseDocumentation()
{ {
return return
"Link a target to given libraries."; "Link a target to given libraries.";
} }
/** /**
* More documentation. * More documentation.
*/ */
@ -130,7 +130,7 @@ public:
")" ")"
; ;
} }
cmTypeMacro(cmTargetLinkLibrariesCommand, cmCommand); cmTypeMacro(cmTargetLinkLibrariesCommand, cmCommand);
private: private:
void LinkLibraryTypeSpecifierWarning(int left, int right); void LinkLibraryTypeSpecifierWarning(int left, int right);