[libcxx-commits] [PATCH] D69174: Refine check for `_LIBCPP_C_HAS_NO_GETS` on FreeBSD
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Oct 18 12:21:12 PDT 2019
ldionne added inline comments.
================
Comment at: include/__config:1169
+# if defined(_LIBCPP_MSVCRT) || \
+ (defined(__FreeBSD__) && __FreeBSD_version >= 1300043)
# define _LIBCPP_C_HAS_NO_GETS
----------------
Shouldn't this say `defined(__FreeBSD_version) && __FreeBSD_version >= 1300043`?
Repository:
rCXX libc++
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D69174/new/
https://reviews.llvm.org/D69174
More information about the libcxx-commits
mailing list