mirror of
https://github.com/holub/mame
synced 2025-06-16 17:29:27 +03:00
bus/cbus/pc9801_86.cpp: Fix clang error: lambda capture 'this' is not used [-Werror,-Wunused-lambda-capture]
This commit is contained in:
parent
e428b6bd07
commit
28cb15d131
@ -364,6 +364,7 @@ void pc9801_86_device::io_map(address_map &map)
|
|||||||
map(0x0c, 0x0c).lrw8(
|
map(0x0c, 0x0c).lrw8(
|
||||||
NAME([this] () {
|
NAME([this] () {
|
||||||
// TODO: recording mode
|
// TODO: recording mode
|
||||||
|
(void)this;
|
||||||
return 0;
|
return 0;
|
||||||
}),
|
}),
|
||||||
NAME([this] (u8 data) {
|
NAME([this] (u8 data) {
|
||||||
|
Loading…
Reference in New Issue
Block a user