aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_other.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-12-12 15:13:24 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2016-12-12 15:13:24 -0800
commite523668cce29745d8024dd5d56ee1d705da24a49 (patch)
tree7510bb9f784336733fed9a4e79b51a27e13c77e7 /toolsrc/src/commands_other.cpp
parent9796e2532cc34896e38a6c0702e538454ffb5586 (diff)
downloadvcpkg-e523668cce29745d8024dd5d56ee1d705da24a49.tar.gz
vcpkg-e523668cce29745d8024dd5d56ee1d705da24a49.zip
Change signature to std::string& (from char*)
Diffstat (limited to 'toolsrc/src/commands_other.cpp')
-rw-r--r--toolsrc/src/commands_other.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/commands_other.cpp b/toolsrc/src/commands_other.cpp
index 16b697952..6df325100 100644
--- a/toolsrc/src/commands_other.cpp
+++ b/toolsrc/src/commands_other.cpp
@@ -41,14 +41,14 @@ namespace vcpkg
, INTEGRATE_COMMAND_HELPSTRING);
}
- std::string create_example_string(const char* command_and_arguments)
+ std::string create_example_string(const std::string& command_and_arguments)
{
std::string cs = Strings::format("Example:\n"
" vcpkg %s", command_and_arguments);
return cs;
}
- void print_example(const char* command_and_arguments)
+ void print_example(const std::string& command_and_arguments)
{
System::println(create_example_string(command_and_arguments));
}