Skip to content

Commit

Permalink
Fix order of includes in pch.h.
Browse files Browse the repository at this point in the history
  • Loading branch information
Holt59 committed Jul 9, 2023
1 parent 26d32db commit 9ddde46
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pch.h
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 9ddde46

Please sign in to comment.