From dfaf9dd5bcf354f09fde7573b7042bb63d84fad0 Mon Sep 17 00:00:00 2001 From: Oliver Stöneberg Date: Fri, 31 Jan 2020 03:46:27 +0100 Subject: fixed some modernize-use-auto clang-tidy warnings (nw) (#6238) --- src/osd/modules/monitor/monitor_win32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/osd/modules/monitor/monitor_win32.cpp') diff --git a/src/osd/modules/monitor/monitor_win32.cpp b/src/osd/modules/monitor/monitor_win32.cpp index 42e51595915..5780a9590c2 100644 --- a/src/osd/modules/monitor/monitor_win32.cpp +++ b/src/osd/modules/monitor/monitor_win32.cpp @@ -106,7 +106,7 @@ protected: private: static BOOL CALLBACK monitor_enum_callback(HMONITOR handle, HDC dc, LPRECT rect, LPARAM data) { - win32_monitor_module* self = reinterpret_cast(data); + auto* self = reinterpret_cast(data); MONITORINFOEX info; BOOL result; -- cgit v1.2.3