build fails

This commit is contained in:
Adam D. Ruppe 2022-08-23 22:04:45 -04:00
parent d88371e42c
commit 5f64fe5d5b
3 changed files with 2 additions and 3 deletions

View File

@ -308,7 +308,7 @@ class MySql : Database {
} }
string escapeBinaryString(const(ubyte)[] data) { string escapeBinaryString(const(ubyte)[] data) {
return tohexsql(b); return tohexsql(data);
} }
string escaped(T...)(string sql, T t) { string escaped(T...)(string sql, T t) {

View File

@ -10671,7 +10671,7 @@ private:
return true; return true;
} }
inout(FONSstate)* getState () inout pure nothrow @trusted @nogc { inout(FONSstate)* getState () inout pure nothrow @trusted @nogc return {
pragma(inline, true); pragma(inline, true);
return cast(inout)(&states[(nstates > 0 ? nstates-1 : 0)]); return cast(inout)(&states[(nstates > 0 ? nstates-1 : 0)]);
} }

View File

@ -11850,7 +11850,6 @@ version(Windows) {
// returns the value in the *high order word* of the return value // returns the value in the *high order word* of the return value
// hence the << 16 // hence the << 16
return 1 << 16; // MNC_CLOSE, close the menu without dinging at the user return 1 << 16; // MNC_CLOSE, close the menu without dinging at the user
break;
case WM_SETCURSOR: case WM_SETCURSOR:
if(cast(HWND) wParam !is hwnd) if(cast(HWND) wParam !is hwnd)
return 0; // further processing elsewhere return 0; // further processing elsewhere