From 7d7b98f1bb7e18967259a76187f02405749b8baa Mon Sep 17 00:00:00 2001 From: AJR Date: Sat, 26 Aug 2023 17:37:34 -0400 Subject: alien.cpp: Fix clang error: lambda capture 'this' is not used [-Werror,-Wunused-lambda-capture] --- src/mame/capcom/alien.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/capcom/alien.cpp b/src/mame/capcom/alien.cpp index c5b72e7e8fa..3fddb5968a4 100644 --- a/src/mame/capcom/alien.cpp +++ b/src/mame/capcom/alien.cpp @@ -176,7 +176,7 @@ void alien_state::alien_map(address_map &map) } return 0xffffffff; }), - NAME([this] (offs_t offset, u32 data, u32 mem_mask) { + NAME([] (offs_t offset, u32 data, u32 mem_mask) { // writing to 0x14000000: outputs }) ); -- cgit v1.2.3