1
0
Fork 0
mirror of https://github.com/yuzu-emu/unicorn.git synced 2025-01-10 23:15:28 +00:00

accel: Remove unused AccelClass::available field

The field is not used anymore, we can remove it.

Backports commit 8d006d4bc2ab4f72877d8bd47cba9aa8d24b54d0 from qemu
This commit is contained in:
Eduardo Habkost 2019-05-03 11:31:18 -04:00 committed by Lioncash
parent d4549fccfb
commit 42c35d968a
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7

View file

@ -38,7 +38,6 @@ typedef struct AccelClass {
const char *opt_name;
const char *name;
int (*available)(void);
int (*init_machine)(MachineState *ms);
bool *allowed;
} AccelClass;