make compile times great again

This commit is contained in:
Adam D. Ruppe 2024-09-09 20:51:28 -04:00
parent 6d30f2fba9
commit ae07d697a3
1 changed files with 3 additions and 13 deletions

View File

@ -3984,8 +3984,6 @@ private:
+/ +/
public CornerStyle cornerStyle() @trusted { public CornerStyle cornerStyle() @trusted {
version(Windows) { version(Windows) {
import std.format;
DWM_WINDOW_CORNER_PREFERENCE dwmCorner; DWM_WINDOW_CORNER_PREFERENCE dwmCorner;
const apiResult = DwmGetWindowAttribute( const apiResult = DwmGetWindowAttribute(
this.hwnd, this.hwnd,
@ -4002,17 +4000,12 @@ private:
return _fauxCornerStyle; return _fauxCornerStyle;
} }
const exMsg = format("DwmGetWindowAttribute() failed with error 0x%x.", apiResult); throw new WindowsApiException("DwmGetWindowAttribute", apiResult);
throw new Exception(exMsg);
} }
CornerStyle corner; CornerStyle corner;
if (!dwmCorner.fromDWM(corner)) { if (!dwmCorner.fromDWM(corner)) {
const exMsg = format( throw ArsdException!"DwmGetWindowAttribute unfamiliar corner preference"(dwmCorner);
"DwmGetWindowAttribute() reported an unfamiliar corner preference: %s",
dwmCorner,
);
throw new Exception(exMsg);
} }
return corner; return corner;
} else { } else {
@ -4023,8 +4016,6 @@ private:
/// ditto /// ditto
public void cornerStyle(const CornerStyle corner) @trusted { public void cornerStyle(const CornerStyle corner) @trusted {
version(Windows) { version(Windows) {
import std.format;
DWM_WINDOW_CORNER_PREFERENCE dwmCorner; DWM_WINDOW_CORNER_PREFERENCE dwmCorner;
if (!corner.toDWM(dwmCorner)) { if (!corner.toDWM(dwmCorner)) {
assert(false, "This should have been impossible because of a final switch."); assert(false, "This should have been impossible because of a final switch.");
@ -4046,8 +4037,7 @@ private:
return; return;
} }
const exMsg = format("DwmSetWindowAttribute() failed with error 0x%x.", apiResult); throw new WindowsApiException("DwmSetWindowAttribute", apiResult);
throw new Exception(exMsg);
} }
} else { } else {
_fauxCornerStyle = corner; _fauxCornerStyle = corner;