Skip to content

Commit

Permalink
Fix case sensitive fs include Windows.h
Browse files Browse the repository at this point in the history
Fixes compilation on case-sensitive filesystems (eg MinGW from Linux)
  • Loading branch information
jschueller authored and NikolajBjorner committed Oct 13, 2019
1 parent c93a265 commit 224cc8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/memory_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ unsigned long long memory::get_max_used_memory() {
}

#if defined(_WINDOWS)
#include <Windows.h>
#include <windows.h>
#endif

unsigned long long memory::get_max_memory_size() {
Expand Down

0 comments on commit 224cc8f

Please sign in to comment.