From 348e01dc4bc16ac4543d54b722fb46dbdebcb1e3 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Fri, 26 Apr 2019 07:11:09 -0700 Subject: Work around a 32-bit GCC compiler bug --- Alc/helpers.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Alc/helpers.cpp') diff --git a/Alc/helpers.cpp b/Alc/helpers.cpp index d9133842..1a62263e 100644 --- a/Alc/helpers.cpp +++ b/Alc/helpers.cpp @@ -262,7 +262,7 @@ void FillCPUCaps(int capfilter) } -FPUCtl::FPUCtl() noexcept +FPUCtl::FPUCtl() { #if defined(HAVE_SSE_INTRINSICS) this->sse_state = _mm_getcsr(); @@ -287,7 +287,7 @@ FPUCtl::FPUCtl() noexcept this->in_mode = true; } -void FPUCtl::leave() noexcept +void FPUCtl::leave() { if(!this->in_mode) return; -- cgit v1.2.3