From c7ef6c1b2e0f81e307b9860adfa4c2c6896775f9 Mon Sep 17 00:00:00 2001
From: Brad King <brad.king@kitware.com>
Date: Wed, 11 Apr 2018 11:14:38 -0400
Subject: [PATCH] SystemInformation: Do not include unnecessary fenv.h

We do not use any symbols from this header.  The `FPE_` macros that we
use are defined by signal headers.
---
 SystemInformation.cxx | 2 --
 1 file changed, 2 deletions(-)

diff --git a/SystemInformation.cxx b/SystemInformation.cxx
index 2b9d7b17..74268163 100644
--- a/SystemInformation.cxx
+++ b/SystemInformation.cxx
@@ -94,7 +94,6 @@ typedef int siginfo_t;
 #endif
 
 #ifdef __APPLE__
-#include <fenv.h>
 #include <mach/host_info.h>
 #include <mach/mach.h>
 #include <mach/mach_types.h>
@@ -114,7 +113,6 @@ typedef int siginfo_t;
 #endif
 
 #if defined(__linux) || defined(__sun) || defined(_SCO_DS)
-#include <fenv.h>
 #include <netdb.h>
 #include <netinet/in.h>
 #include <sys/socket.h>
-- 
GitLab