From efb8033d48af766736e787f83edc79a457337b55 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Tue, 3 Dec 2019 01:29:26 +1000 Subject: [PATCH] HostInterface: Fix for gcc < 8 --- src/core/host_interface.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/host_interface.cpp b/src/core/host_interface.cpp index b2298dec2..c58811eff 100644 --- a/src/core/host_interface.cpp +++ b/src/core/host_interface.cpp @@ -6,7 +6,6 @@ #include "common/audio_stream.h" #include "host_display.h" #include "system.h" -#include #include Log_SetChannel(HostInterface); @@ -16,7 +15,7 @@ Log_SetChannel(HostInterface); #include #endif -#ifdef ANDROID +#if defined(ANDROID) || (defined(__GNUC__) && __GNUC__ < 8) #include