diff options
author | Brad King <brad.king@kitware.com> | 2021-07-02 18:12:45 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-07-12 16:21:44 (GMT) |
commit | 2065bd73cb6a9a3bc463c5bb0dc6877433782973 (patch) | |
tree | 9df9d27f4fb78bbd86dcdd9659241fe96eec9cff /Source/CTest | |
parent | c9cd039e5f312f2717c6522ac7117791856f734b (diff) | |
download | CMake-2065bd73cb6a9a3bc463c5bb0dc6877433782973.zip CMake-2065bd73cb6a9a3bc463c5bb0dc6877433782973.tar.gz CMake-2065bd73cb6a9a3bc463c5bb0dc6877433782973.tar.bz2 |
cmState: Construct with mode
Diffstat (limited to 'Source/CTest')
-rw-r--r-- | Source/CTest/cmCTestTestHandler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestTestHandler.cxx b/Source/CTest/cmCTestTestHandler.cxx index 72b86c1..b60a664 100644 --- a/Source/CTest/cmCTestTestHandler.cxx +++ b/Source/CTest/cmCTestTestHandler.cxx @@ -2165,7 +2165,7 @@ bool cmCTestTestHandler::SetTestsProperties( // Ensure we have complete triples otherwise the data is corrupt. if (triples.size() % 3 == 0) { - cmState state; + cmState state(cmState::Unknown); rt.Backtrace = cmListFileBacktrace(state.CreateBaseSnapshot()); // the first entry represents the top of the trace so we need to |