Skip to content

Commit 224cc8f

Browse files
jschuellerNikolajBjorner
authored andcommitted
Fix case sensitive fs include Windows.h
Fixes compilation on case-sensitive filesystems (eg MinGW from Linux)
1 parent c93a265 commit 224cc8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/memory_manager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ unsigned long long memory::get_max_used_memory() {
163163
}
164164

165165
#if defined(_WINDOWS)
166-
#include <Windows.h>
166+
#include <windows.h>
167167
#endif
168168

169169
unsigned long long memory::get_max_memory_size() {

0 commit comments

Comments
 (0)