diff options
author | Brad King <brad.king@kitware.com> | 2015-07-02 14:00:51 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-07-02 14:00:51 (GMT) |
commit | d59ab785858d8028eb9452a61571ffa688d90136 (patch) | |
tree | 7cfd577bbbe87c753028185c20f1b2f7a6e997db /Source/cmSystemTools.h | |
parent | 3ae8e84ef5c94e5fa250b4e2466aa6632a233bb2 (diff) | |
parent | f62d301b9257542f5460902c400af3f947f10a66 (diff) | |
download | CMake-d59ab785858d8028eb9452a61571ffa688d90136.zip CMake-d59ab785858d8028eb9452a61571ffa688d90136.tar.gz CMake-d59ab785858d8028eb9452a61571ffa688d90136.tar.bz2 |
Merge topic 'ctest-test-load'
f62d301b ctest: Optionally avoid starting tests that may exceed a given CPU load
07c550ca cmCTestMultiProcessHandler: Refactor RUN_SERIAL implementation
8bf5a80b cmSystemTools: Add StringToULong helper
dffc307c Tests: Teach RunCMake infrastructure to optionally timeout
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r-- | Source/cmSystemTools.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index 6feb6c5..8ebb4e3 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -469,6 +469,7 @@ public: /** Convert string to long. Expected that the whole string is an integer */ static bool StringToLong(const char* str, long* value); + static bool StringToULong(const char* str, unsigned long* value); #ifdef _WIN32 struct WindowsFileRetry |