aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkg-test/system.cpp
diff options
context:
space:
mode:
authornicole mazzuca <mazzucan@outlook.com>2021-01-15 18:32:04 -0800
committerGitHub <noreply@github.com>2021-01-15 18:32:04 -0800
commitb60f003ccf5fe8613d029f49f835c8929a66eb61 (patch)
treeafb2b7d8b2d1729fe2222776b160106a843ecde3 /toolsrc/src/vcpkg-test/system.cpp
parenta2cc2b1735dc260f455ef7ce6ef935646dc69329 (diff)
downloadvcpkg-b60f003ccf5fe8613d029f49f835c8929a66eb61.tar.gz
vcpkg-b60f003ccf5fe8613d029f49f835c8929a66eb61.zip
[vcpkg] Rewriting CmdLineBuilder/Command (3/n) (#15673)
Rename CmdLineBuilder to Command, since it's no longer a builder but an actual data type
Diffstat (limited to 'toolsrc/src/vcpkg-test/system.cpp')
-rw-r--r--toolsrc/src/vcpkg-test/system.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/vcpkg-test/system.cpp b/toolsrc/src/vcpkg-test/system.cpp
index 7ebc621f0..4c8b533bc 100644
--- a/toolsrc/src/vcpkg-test/system.cpp
+++ b/toolsrc/src/vcpkg-test/system.cpp
@@ -127,9 +127,9 @@ TEST_CASE ("guess_visual_studio_prompt", "[system]")
TEST_CASE ("cmdlinebuilder", "[system]")
{
- using vcpkg::System::CmdLineBuilder;
+ using vcpkg::System::Command;
- CmdLineBuilder cmd;
+ Command cmd;
cmd.path_arg(fs::u8path("relative/path.exe"));
cmd.string_arg("abc");
cmd.string_arg("hello world!");