mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
Fix case sensitive fs include Windows.h
Fixes compilation on case-sensitive filesystems (eg MinGW from Linux)
This commit is contained in:
parent
c93a265b0b
commit
224cc8f8dd
|
@ -163,7 +163,7 @@ unsigned long long memory::get_max_used_memory() {
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(_WINDOWS)
|
#if defined(_WINDOWS)
|
||||||
#include <Windows.h>
|
#include <windows.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
unsigned long long memory::get_max_memory_size() {
|
unsigned long long memory::get_max_memory_size() {
|
||||||
|
|
Loading…
Reference in a new issue