Skip to content

Commit

Permalink
Merge pull request #1841 from ModOrganizer2/fix/fix-pch-include-order
Browse files Browse the repository at this point in the history
Fix order of includes in pch.h.
  • Loading branch information
Holt59 authored Jul 9, 2023
2 parents 26d32db + 9ddde46 commit 0dd04fb
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 0dd04fb

Please sign in to comment.