From bf4b0dd1f4df7da16596a75fd0d24d5768aa2665 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 17 Mar 2019 03:20:53 -0400 Subject: [PATCH] input_common/sdl_impl: Make lambda capture more specific in SDLState constructor We don't need to universally capture by reference. We specifically just need to capture the this pointer. --- src/input_common/sdl/sdl_impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input_common/sdl/sdl_impl.cpp b/src/input_common/sdl/sdl_impl.cpp index 8e71c99e0..0ba0fab1e 100644 --- a/src/input_common/sdl/sdl_impl.cpp +++ b/src/input_common/sdl/sdl_impl.cpp @@ -475,7 +475,7 @@ SDLState::SDLState() { initialized = true; if (start_thread) { - poll_thread = std::thread([&] { + poll_thread = std::thread([this] { using namespace std::chrono_literals; while (initialized) { SDL_PumpEvents();