diff options
author | Markus Härer <markus.haerer@gmx.net> | 2023-04-08 14:17:45 +0200 |
---|---|---|
committer | Markus Härer <markus.haerer@gmx.net> | 2023-04-15 21:54:47 +0200 |
commit | 2b4559e2ee33c959ff7f01b50b3ee2009fcf2608 (patch) | |
tree | 474d1f63d781d661660d42318f07e5e626784b70 | |
parent | f22fa41ec54bb242ccf61824072b12e860b08291 (diff) |
CVariant: Make it build on OSX 10.13
Should run fine according to https://stackoverflow.com/a/53868971
-rw-r--r-- | xbmc/utils/Variant.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xbmc/utils/Variant.cpp b/xbmc/utils/Variant.cpp index 104d315d7a..54926037ed 100644 --- a/xbmc/utils/Variant.cpp +++ b/xbmc/utils/Variant.cpp @@ -6,6 +6,8 @@ * See LICENSES/README.md for more information. */ +#define _LIBCPP_DISABLE_AVAILABILITY + #include "Variant.h" #include <charconv> |