Procházet zdrojové kódy

Fix compilation on some systems with a recent LLVM but no filesystem library

main
Sam Hocevar před 11 měsíci
rodič
revize
e29dd1c4b0
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      include/lol/lib/cli11

+ 1
- 1
include/lol/lib/cli11 Zobrazit soubor

@@ -21,7 +21,7 @@ namespace std { static auto getenv = [](char const *) { return nullptr; }; }
// that, do not use <version> on systems that do not have it.
#if !defined __SCE__
# include <version>
# if defined _LIBCPP_HAS_NO_FILESYSTEM_LIBRARY
# if defined _LIBCPP_HAS_NO_FILESYSTEM_LIBRARY || defined _LIBCPP_AVAILABILITY_HAS_NO_FILESYSTEM_LIBRARY
# define CLI11_HAS_FILESYSTEM 0
# endif
#endif


Načítá se…
Zrušit
Uložit