Remove unused #include directives

This commit is contained in:
Alexander Karatarakis 2018-04-07 03:12:33 -07:00
parent f070265398
commit 269e78bb61
3 changed files with 1 additions and 5 deletions

View File

@ -13,8 +13,6 @@
#include <vcpkg/paragraphs.h>
#include <vcpkg/vcpkglib.h>
#include <regex>
namespace vcpkg::Export
{
using Dependencies::ExportPlanAction;

View File

@ -2,7 +2,6 @@
#include <vcpkg/parse.h>
#include <vcpkg/base/checks.h>
#include <vcpkg/base/util.h>
namespace vcpkg::Parse

View File

@ -1,6 +1,5 @@
#include "pch.h"
#include <vcpkg/base/checks.h>
#include <vcpkg/base/strings.h>
#include <vcpkg/triplet.h>
@ -38,7 +37,7 @@ namespace vcpkg
const Triplet Triplet::ARM_UWP = from_canonical_name("arm-uwp");
const Triplet Triplet::ARM64_UWP = from_canonical_name("arm64-uwp");
const Triplet Triplet::ARM_WINDOWS = from_canonical_name("arm-windows");
const Triplet Triplet::ARM64_WINDOWS = from_canonical_name("arm64-windows");
const Triplet Triplet::ARM64_WINDOWS = from_canonical_name("arm64-windows");
bool Triplet::operator==(const Triplet& other) const { return this->m_instance == other.m_instance; }