From 04fd82b112ba0577c25622a614987b374b19f256 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Tue, 25 Aug 2015 17:13:49 +1000 Subject: [PATCH] style --- debug.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/debug.cpp b/debug.cpp index 27755796..ecfab2aa 100644 --- a/debug.cpp +++ b/debug.cpp @@ -94,13 +94,15 @@ unusual (void) { #if defined(PLATFORM_LINUX) #include void -enable_fpe (void) { +enable_fpe (void) +{ feenableexcept (FE_DIVBYZERO | FE_INVALID); } void -disable_fpe (void) { +disable_fpe (void) +{ feenableexcept (0); } #else