diff options
| -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> |
