aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-03-29 13:14:32 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-03-29 13:14:32 -0700
commitaea362ab7007bc7fbf6487332cbe0e36d6fdd4ba (patch)
treec9f69fff6edd97a44c1e6317c4a9048c2e3658d8
parent632e42e16d8f979de5341d5a0407111c14581edd (diff)
parent15e1da0dcf0341f73284c41406dfc917741f80f7 (diff)
downloadvcpkg-aea362ab7007bc7fbf6487332cbe0e36d6fdd4ba.tar.gz
vcpkg-aea362ab7007bc7fbf6487332cbe0e36d6fdd4ba.zip
Merge branch 'patch-3' of https://github.com/OlafvdSpek/vcpkg into OlafvdSpek-patch-3
-rw-r--r--toolsrc/include/pch.h58
1 files changed, 26 insertions, 32 deletions
diff --git a/toolsrc/include/pch.h b/toolsrc/include/pch.h
index e78f17237..1306f3b21 100644
--- a/toolsrc/include/pch.h
+++ b/toolsrc/include/pch.h
@@ -1,43 +1,37 @@
#pragma once
-#define WIN32_LEAN_AND_MEAN
#define NOMINMAX
-#include <Windows.h>
-#include <shellapi.h>
-#include <Shlobj.h>
-#include <winhttp.h>
-#include <process.h>
-
-#include <cassert>
-#include <stdexcept>
-#include <system_error>
+#define WIN32_LEAN_AND_MEAN
+#include <algorithm>
#include <array>
-#include <vector>
-#include <set>
-#include <map>
-#include <unordered_set>
-#include <unordered_map>
-
-#include <string>
-#include <regex>
-
+#include <cassert>
+#include <cctype>
+#include <chrono>
+#include <codecvt>
+#include <cstdarg>
+#include <cstdint>
#include <filesystem>
-#include <iostream>
#include <fstream>
-#include <memory>
-#include <iomanip>
-
-#include <algorithm>
#include <functional>
+#include <iomanip>
+#include <iostream>
#include <iterator>
-#include <utility>
-
-#include <cstdarg>
-#include <codecvt>
-#include <cctype>
-#include <cstdint>
-
+#include <map>
+#include <memory>
+#include <process.h>
+#include <regex>
+#include <set>
+#include <shellapi.h>
+#include <shlobj.h>
+#include <stdexcept>
+#include <string>
#include <sys/timeb.h>
+#include <system_error>
#include <time.h>
-#include <chrono>
+#include <unordered_map>
+#include <unordered_set>
+#include <utility>
+#include <vector>
+#include <windows.h>
+#include <winhttp.h>