3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00

Fix case sensitive fs include Windows.h

Fixes compilation on case-sensitive filesystems (eg MinGW from Linux)
This commit is contained in:
Julien Schueller 2019-10-13 10:18:16 +02:00 committed by Nikolaj Bjorner
parent c93a265b0b
commit 224cc8f8dd

View file

@ -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() {