From c0e029117d22db6c5cf25c5ca667a3b93c99b03c Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Tue, 1 Jul 2025 22:26:18 -0400 Subject: [PATCH] build(windows): remove no-template-body exception (#4033) --- cmake/compile_definitions/windows.cmake | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cmake/compile_definitions/windows.cmake b/cmake/compile_definitions/windows.cmake index d40fb0fa..a3009be0 100644 --- a/cmake/compile_definitions/windows.cmake +++ b/cmake/compile_definitions/windows.cmake @@ -9,10 +9,6 @@ set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -static") # gcc complains about misleading indentation in some mingw includes list(APPEND SUNSHINE_COMPILE_OPTIONS -Wno-misleading-indentation) -# gcc15 complains about non-template type 'coroutine_handle' used as a template in Windows.Foundation.h -# can remove after https://gcc.gnu.org/bugzilla/show_bug.cgi?id=120495 is available in mingw-w64 -list(APPEND SUNSHINE_COMPILE_OPTIONS -Wno-template-body) - # see gcc bug 98723 add_definitions(-DUSE_BOOST_REGEX)