aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-09-30 16:54:07 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2016-09-30 16:54:07 -0700
commit4b0f3d87befb84c819afbf664614281491a784b9 (patch)
treee36c167739be60fec7f4704939936506bc1de86e /toolsrc/include
parentd31498d0e7c22251b22594763d91c9f36a32629a (diff)
downloadvcpkg-4b0f3d87befb84c819afbf664614281491a784b9.tar.gz
vcpkg-4b0f3d87befb84c819afbf664614281491a784b9.zip
Introduce Input::check_triplet()
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg_Input.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/toolsrc/include/vcpkg_Input.h b/toolsrc/include/vcpkg_Input.h
index 7041001c8..311df3bec 100644
--- a/toolsrc/include/vcpkg_Input.h
+++ b/toolsrc/include/vcpkg_Input.h
@@ -1,11 +1,13 @@
#pragma once
#include <vector>
-#include <string>
#include "package_spec.h"
+#include "vcpkg_paths.h"
namespace vcpkg {namespace Input
{
package_spec check_and_get_package_spec(const std::string& package_spec_as_string, const triplet& default_target_triplet, const char* example_text);
std::vector<package_spec> check_and_get_package_specs(const std::vector<std::string>& package_specs_as_strings, const triplet& default_target_triplet, const char* example_text);
+
+ void check_triplet(const triplet& t, const vcpkg_paths& paths);
}}