diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-01-27 14:33:54 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-01-30 21:52:42 -0800 |
| commit | 6f363339d8eb5cd8c7a2dd83787af3a34ff0eb4b (patch) | |
| tree | 8524053411097e1b22cf46e6da2f7b14b137d5ba /toolsrc/include | |
| parent | 31bf4634d220b9a2ae33380eb301335e85018e46 (diff) | |
| download | vcpkg-6f363339d8eb5cd8c7a2dd83787af3a34ff0eb4b.tar.gz vcpkg-6f363339d8eb5cd8c7a2dd83787af3a34ff0eb4b.zip | |
Reorganize pch.h
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/pch.h | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/toolsrc/include/pch.h b/toolsrc/include/pch.h index 48aca2b77..2c8b5b5f7 100644 --- a/toolsrc/include/pch.h +++ b/toolsrc/include/pch.h @@ -7,32 +7,33 @@ #include <Shlobj.h> #include <winhttp.h> -#include <iostream> -#include <fstream> -#include <memory> #include <cassert> -#include <cstdarg> -#include <codecvt> -#include <cctype> +#include <stdexcept> +#include <system_error> +#include <array> +#include <vector> #include <set> #include <map> #include <unordered_set> #include <unordered_map> -#include <fstream> + +#include <string> #include <regex> -#include <array> + +#include <iostream> +#include <fstream> +#include <memory> #include <iomanip> +#include <algorithm> +#include <functional> #include <iterator> #include <utility> -#include <sys/timeb.h> -#include <time.h> -#include <algorithm> -#include <functional> -#include <string> -#include <vector> +#include <cstdarg> +#include <codecvt> +#include <cctype> -#include <stdexcept> -#include <system_error>
\ No newline at end of file +#include <sys/timeb.h> +#include <time.h> |
