diff options
| author | Victor Romero <romerosanchezv@gmail.com> | 2019-08-14 15:38:07 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-14 15:38:07 -0700 |
| commit | edaf3bf91e6b3c33943d5006f6b34fe98b18e1d9 (patch) | |
| tree | 907ee08d56c10d09e4dddedb12914c86115e76c1 /toolsrc/include | |
| parent | b69fd4adae51f423a7354d9a38017bfb80d18c1f (diff) | |
| download | vcpkg-edaf3bf91e6b3c33943d5006f6b34fe98b18e1d9.tar.gz vcpkg-edaf3bf91e6b3c33943d5006f6b34fe98b18e1d9.zip | |
[depend-info] Fix bugs, add `--sort`, `--show-depth` and `--max-recurse` options (#7643)
* [depend-info] Follow same rules as vcpkg install
* [depend-info] Add --max-depth and --sort options
* [depend-info] Improve output readability (a tiny bit)
* [depend-info] Add --show-depth option
* [depend-info] Fix build on VS 2015
* [depend-info] Fix output of --dot and --dgml
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/vcpkg/base/strings.h | 1 | ||||
| -rw-r--r-- | toolsrc/include/vcpkg/commands.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/toolsrc/include/vcpkg/base/strings.h b/toolsrc/include/vcpkg/base/strings.h index a147a8373..0f25607df 100644 --- a/toolsrc/include/vcpkg/base/strings.h +++ b/toolsrc/include/vcpkg/base/strings.h @@ -1,6 +1,5 @@ #pragma once - #include <vcpkg/base/cstringview.h> #include <vcpkg/base/optional.h> #include <vcpkg/base/stringliteral.h> diff --git a/toolsrc/include/vcpkg/commands.h b/toolsrc/include/vcpkg/commands.h index 6a94b389a..8a502122e 100644 --- a/toolsrc/include/vcpkg/commands.h +++ b/toolsrc/include/vcpkg/commands.h @@ -56,7 +56,7 @@ namespace vcpkg::Commands namespace DependInfo { extern const CommandStructure COMMAND_STRUCTURE; - void perform_and_exit(const VcpkgCmdArguments& args, const VcpkgPaths& paths); + void perform_and_exit(const VcpkgCmdArguments& args, const VcpkgPaths& paths, const Triplet& default_triplet); } namespace Search |
