diff options
| author | Mikaël Capelle <capelle.mikael@gmail.com> | 2023-07-09 21:32:30 +0200 |
|---|---|---|
| committer | Mikaël Capelle <capelle.mikael@gmail.com> | 2023-07-09 21:32:30 +0200 |
| commit | 9ddde468eadc36ba1edae7d5e9448f866253ca66 (patch) | |
| tree | a55cd2795237cc248a33e70b596f25deaf2c3254 | |
| parent | 26d32db43611d37ac0c439d052fcbbac5e5aa0ab (diff) | |
Fix order of includes in pch.h.
| -rw-r--r-- | src/pch.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -31,13 +31,16 @@ #include <vector> #include <wchar.h> +// keep this header separated to avoid ordering issue since this must be +// included before DbgHelp.h +#include <Windows.h> + // windows #include <DbgHelp.h> #include <LMCons.h> #include <Psapi.h> #include <Shellapi.h> #include <Shlwapi.h> -#include <Windows.h> #include <eh.h> #include <shlobj.h> #include <tchar.h> |
