summaryrefslogtreecommitdiffstats
path: root/Source/cmCoreTryCompile.h
diff options
context:
space:
mode:
authorAlex Neundorf <neundorf@kde.org>2011-09-15 14:20:33 (GMT)
committerAlex Neundorf <neundorf@kde.org>2011-09-15 14:20:33 (GMT)
commit31f43fdb5af80029bc644bffd853c81a25424623 (patch)
treeed89871c2d104a8b84067fdb4cce632c43578638 /Source/cmCoreTryCompile.h
parent98d5623a7b809a8d730fd197412935b52f234e7d (diff)
downloadCMake-31f43fdb5af80029bc644bffd853c81a25424623.zip
CMake-31f43fdb5af80029bc644bffd853c81a25424623.tar.gz
CMake-31f43fdb5af80029bc644bffd853c81a25424623.tar.bz2
Remove trailing whitespace
Alex
Diffstat (limited to 'Source/cmCoreTryCompile.h')
-rw-r--r--Source/cmCoreTryCompile.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/Source/cmCoreTryCompile.h b/Source/cmCoreTryCompile.h
index e29dde8..5c67f13 100644
--- a/Source/cmCoreTryCompile.h
+++ b/Source/cmCoreTryCompile.h
@@ -28,27 +28,27 @@ public:
/**
* This is the core code for try compile. It is here so that other
* commands, such as TryRun can access the same logic without
- * duplication.
+ * duplication.
*/
int TryCompileCode(std::vector<std::string> const& argv);
- /**
- * This deletes all the files created by TryCompileCode.
+ /**
+ * This deletes all the files created by TryCompileCode.
* This way we do not have to rely on the timing and
* dependencies of makefiles.
*/
void CleanupFiles(const char* binDir);
- /**
- * This tries to find the (executable) file created by
+ /**
+ * This tries to find the (executable) file created by
TryCompileCode. The result is stored in OutputFile. If nothing is found,
the error message is stored in FindErrorMessage.
*/
void FindOutputFile(const char* targetName);
-
+
cmTypeMacro(cmCoreTryCompile, cmCommand);
-
+
std::string BinaryDirectory;
std::string OutputFile;
std::string FindErrorMessage;