HostInterface: Fix for gcc < 8
This commit is contained in:
parent
45fc19fd05
commit
efb8033d48
|
@ -6,7 +6,6 @@
|
||||||
#include "common/audio_stream.h"
|
#include "common/audio_stream.h"
|
||||||
#include "host_display.h"
|
#include "host_display.h"
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include <filesystem>
|
|
||||||
#include <imgui.h>
|
#include <imgui.h>
|
||||||
Log_SetChannel(HostInterface);
|
Log_SetChannel(HostInterface);
|
||||||
|
|
||||||
|
@ -16,7 +15,7 @@ Log_SetChannel(HostInterface);
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef ANDROID
|
#if defined(ANDROID) || (defined(__GNUC__) && __GNUC__ < 8)
|
||||||
|
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue