Showing with 0 additions and 12 deletions.
  1. +0 −12 src/core/sys/windows/windef.d
12 changes: 0 additions & 12 deletions src/core/sys/windows/windef.d
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,6 @@ pure nothrow @nogc {
ubyte HIBYTE(ushort w) {
return cast(ubyte) (w >>> 8);
}

template max(T) {
T max(T a, T b) {
return a > b ? a : b;
}
}

template min(T) {
T min(T a, T b) {
return a < b ? a : b;
}
}
}

enum void* NULL = null;
Expand Down