mirror of https://github.com/adamdruppe/arsd.git
build fails
This commit is contained in:
parent
d88371e42c
commit
5f64fe5d5b
2
mysql.d
2
mysql.d
|
@ -308,7 +308,7 @@ class MySql : Database {
|
|||
}
|
||||
|
||||
string escapeBinaryString(const(ubyte)[] data) {
|
||||
return tohexsql(b);
|
||||
return tohexsql(data);
|
||||
}
|
||||
|
||||
string escaped(T...)(string sql, T t) {
|
||||
|
|
|
@ -10671,7 +10671,7 @@ private:
|
|||
return true;
|
||||
}
|
||||
|
||||
inout(FONSstate)* getState () inout pure nothrow @trusted @nogc {
|
||||
inout(FONSstate)* getState () inout pure nothrow @trusted @nogc return {
|
||||
pragma(inline, true);
|
||||
return cast(inout)(&states[(nstates > 0 ? nstates-1 : 0)]);
|
||||
}
|
||||
|
|
|
@ -11850,7 +11850,6 @@ version(Windows) {
|
|||
// returns the value in the *high order word* of the return value
|
||||
// hence the << 16
|
||||
return 1 << 16; // MNC_CLOSE, close the menu without dinging at the user
|
||||
break;
|
||||
case WM_SETCURSOR:
|
||||
if(cast(HWND) wParam !is hwnd)
|
||||
return 0; // further processing elsewhere
|
||||
|
|
Loading…
Reference in New Issue