diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-01-09 17:32:52 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-01-09 17:32:52 (GMT) |
commit | 5d5fd641c30770ad195748d4fe0fe65c60c40f9c (patch) | |
tree | 5830d156fd450b021fb0725d25a4cb3cee5729c3 /Source/cmCTest.h | |
parent | ed387ffe6b72986856ca1f14c9ac11c4e12c5d6b (diff) | |
download | CMake-5d5fd641c30770ad195748d4fe0fe65c60c40f9c.zip CMake-5d5fd641c30770ad195748d4fe0fe65c60c40f9c.tar.gz CMake-5d5fd641c30770ad195748d4fe0fe65c60c40f9c.tar.bz2 |
ENH: fix return type
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index adfafdf..9916a00 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -172,7 +172,7 @@ public: ///! The max output width int GetMaxTestNameWidth() const; - int SetMaxTestNameWidth(int w) { this->MaxTestNameWidth = w;} + void SetMaxTestNameWidth(int w) { this->MaxTestNameWidth = w;} /** * Run a single executable command and put the stdout and stderr |