aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-10-04 15:58:05 -0700
committerRobert Schumacher <roschuma@microsoft.com>2017-10-04 15:58:05 -0700
commitddbd57f5058b78e7df27497af844a41a1c79b986 (patch)
treee67822107649f4ea3af20ab2f116c3042b0b59c7
parenta34b6ee16e424e815193010ee0708033cf693d9d (diff)
downloadvcpkg-ddbd57f5058b78e7df27497af844a41a1c79b986.tar.gz
vcpkg-ddbd57f5058b78e7df27497af844a41a1c79b986.zip
[vcpkg] Reformat and fix headers.
-rw-r--r--toolsrc/include/vcpkg_Commands_Export.h8
-rw-r--r--toolsrc/include/vcpkg_Commands_Export_IFW.h11
2 files changed, 10 insertions, 9 deletions
diff --git a/toolsrc/include/vcpkg_Commands_Export.h b/toolsrc/include/vcpkg_Commands_Export.h
index 31003422d..6e698c1b4 100644
--- a/toolsrc/include/vcpkg_Commands_Export.h
+++ b/toolsrc/include/vcpkg_Commands_Export.h
@@ -1,14 +1,8 @@
#pragma once
-#include "StatusParagraphs.h"
-#include "VcpkgCmdArguments.h"
#include "VcpkgPaths.h"
-#include "VersionT.h"
-#include "vcpkg_Build.h"
-#include "vcpkg_Dependencies.h"
-#include <array>
namespace vcpkg::Commands::Export
{
- void export_integration_files(const fs::path &raw_exported_dir_path, const VcpkgPaths& paths);
+ void export_integration_files(const fs::path& raw_exported_dir_path, const VcpkgPaths& paths);
}
diff --git a/toolsrc/include/vcpkg_Commands_Export_IFW.h b/toolsrc/include/vcpkg_Commands_Export_IFW.h
index c066ca021..7bee45eaf 100644
--- a/toolsrc/include/vcpkg_Commands_Export_IFW.h
+++ b/toolsrc/include/vcpkg_Commands_Export_IFW.h
@@ -1,7 +1,11 @@
#pragma once
-#include "vcpkg_Files.h"
+#include "VcpkgPaths.h"
#include "vcpkg_Dependencies.h"
+#include "vcpkg_Files.h"
+
+#include <string>
+#include <vector>
namespace vcpkg::Commands::Export::IFW
{
@@ -14,5 +18,8 @@ namespace vcpkg::Commands::Export::IFW
Optional<std::string> maybe_installer_file_path;
};
- void do_export(const std::vector<Dependencies::ExportPlanAction> &export_plan, const std::string &export_id, const Options &ifw_options, const VcpkgPaths& paths);
+ void do_export(const std::vector<Dependencies::ExportPlanAction>& export_plan,
+ const std::string& export_id,
+ const Options& ifw_options,
+ const VcpkgPaths& paths);
}