aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_list.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-11-07 17:37:08 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2016-11-07 17:37:08 -0800
commitd78c1a974f1eabe8caf5df36bbd5b55b2dcd701d (patch)
tree5fa436a94f7fb27a4836eb64f9bb41214a6fcb4b /toolsrc/src/commands_list.cpp
parente7c6f90adc58382d200159ada063204d462937d0 (diff)
downloadvcpkg-d78c1a974f1eabe8caf5df36bbd5b55b2dcd701d.tar.gz
vcpkg-d78c1a974f1eabe8caf5df36bbd5b55b2dcd701d.zip
Move shorten_description to vcpkglib_helpers
Diffstat (limited to 'toolsrc/src/commands_list.cpp')
-rw-r--r--toolsrc/src/commands_list.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/toolsrc/src/commands_list.cpp b/toolsrc/src/commands_list.cpp
index 87aad1991..2d6b42008 100644
--- a/toolsrc/src/commands_list.cpp
+++ b/toolsrc/src/commands_list.cpp
@@ -1,6 +1,7 @@
#include "vcpkg_Commands.h"
#include "vcpkg.h"
#include "vcpkg_System.h"
+#include "vcpkglib_helpers.h"
namespace vcpkg
{
@@ -9,7 +10,7 @@ namespace vcpkg
System::println("%-27s %-16s %s",
pgh.package.displayname(),
pgh.package.version,
- shorten_description(pgh.package.description));
+ details::shorten_description(pgh.package.description));
}
void list_command(const vcpkg_cmd_arguments& args, const vcpkg_paths& paths)