diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2022-05-17 16:54:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-05-24 13:09:43 (GMT) |
commit | 9409e5c04f0a534b53ce2f0e0a81c5e7e70c38f1 (patch) | |
tree | 65f6c53b866517b13a3b42ce4bd7b091f38f7808 /Source/CTest/cmCTestVC.cxx | |
parent | a5f8cbe8b149d4b3e1136aa4c07691397d693038 (diff) | |
download | CMake-9409e5c04f0a534b53ce2f0e0a81c5e7e70c38f1.zip CMake-9409e5c04f0a534b53ce2f0e0a81c5e7e70c38f1.tar.gz CMake-9409e5c04f0a534b53ce2f0e0a81c5e7e70c38f1.tar.bz2 |
clang-tidy: address `readability-container-data-pointer` lints
Diffstat (limited to 'Source/CTest/cmCTestVC.cxx')
-rw-r--r-- | Source/CTest/cmCTestVC.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestVC.cxx b/Source/CTest/cmCTestVC.cxx index d5711c5..609ccba 100644 --- a/Source/CTest/cmCTestVC.cxx +++ b/Source/CTest/cmCTestVC.cxx @@ -66,7 +66,7 @@ bool cmCTestVC::InitialCheckout(const std::string& command) this->Log << "--- Begin Initial Checkout ---\n"; OutputLogger out(this->Log, "co-out> "); OutputLogger err(this->Log, "co-err> "); - bool result = this->RunChild(&vc_co[0], &out, &err, parent.c_str()); + bool result = this->RunChild(vc_co.data(), &out, &err, parent.c_str()); this->Log << "--- End Initial Checkout ---\n"; if (!result) { cmCTestLog(this->CTest, ERROR_MESSAGE, |