diff options
author | Brad King <brad.king@kitware.com> | 2023-11-06 23:31:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-11-07 14:13:24 (GMT) |
commit | e4483b887147a8698a48babe6653ea9b9387d6e2 (patch) | |
tree | 4cc4e6685b04fdfa1b9afc6847d1bae4ce92a2b5 /Tests | |
parent | ed154b38963437c7a0208a45592988aa577ac7c9 (diff) | |
download | CMake-e4483b887147a8698a48babe6653ea9b9387d6e2.zip CMake-e4483b887147a8698a48babe6653ea9b9387d6e2.tar.gz CMake-e4483b887147a8698a48babe6653ea9b9387d6e2.tar.bz2 |
Tests: Avoid compiling call to dap::optional<dap::string>(nullptr)
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/CMakeLib/testDebugger.h | 2 | ||||
-rw-r--r-- | Tests/CMakeLib/testDebuggerVariables.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Tests/CMakeLib/testDebugger.h b/Tests/CMakeLib/testDebugger.h index d8d2caa..df67278 100644 --- a/Tests/CMakeLib/testDebugger.h +++ b/Tests/CMakeLib/testDebugger.h @@ -19,7 +19,7 @@ do { \ ASSERT_TRUE(x.name == expectedName); \ ASSERT_TRUE(x.value == expectedValue); \ - if (expectedType == nullptr) { \ + if (expectedType == std::string()) { \ ASSERT_TRUE(x.type == dap::optional<dap::string>()); \ } else { \ ASSERT_TRUE(x.type == dap::optional<dap::string>(expectedType)); \ diff --git a/Tests/CMakeLib/testDebuggerVariables.cxx b/Tests/CMakeLib/testDebuggerVariables.cxx index 0d8d18d..bb3f14d 100644 --- a/Tests/CMakeLib/testDebuggerVariables.cxx +++ b/Tests/CMakeLib/testDebuggerVariables.cxx @@ -196,8 +196,8 @@ static bool testNoSupportsVariableType() CreateVariablesRequest(vars->GetId())); ASSERT_TRUE(variables.size() == 2); - ASSERT_VARIABLE(variables[0], "Children", "", nullptr); - ASSERT_VARIABLE(variables[1], "test", "value", nullptr); + ASSERT_VARIABLE(variables[0], "Children", "", ""); + ASSERT_VARIABLE(variables[1], "test", "value", ""); return true; } |