mirror of
https://github.com/shadps4-emu/ext-fmt.git
synced 2024-11-27 11:40:26 +00:00
feat: enable building with gcc 4.8
This commit is contained in:
parent
05aa783779
commit
acaf83f40f
@ -13,8 +13,10 @@
|
||||
#include <cstdio>
|
||||
#include <system_error> // std::system_error
|
||||
|
||||
#if (defined __APPLE__ || defined(__FreeBSD__)) && __has_include(<xlocale.h>)
|
||||
# include <xlocale.h> // for LC_NUMERIC_MASK on OS X
|
||||
#if defined __APPLE__ || defined(__FreeBSD__)
|
||||
# if (__cplusplus < 201703L) || __has_include(<xlocale.h>)
|
||||
# include <xlocale.h> // for LC_NUMERIC_MASK on OS X
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#include "format.h"
|
||||
|
Loading…
Reference in New Issue
Block a user