[libcxx-commits] [libcxx] [libc++] Introduce ABI sensitive areas to avoid requiring _LIBCPP_HIDE_FROM_ABI everywhere (PR #131156)
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Mar 13 09:19:46 PDT 2025
================
@@ -182,7 +187,6 @@ inline _LIBCPP_HIDE_FROM_ABI bool is_directory(const path& __p) { return is_dire
inline _LIBCPP_HIDE_FROM_ABI bool is_directory(const path& __p, error_code& __ec) noexcept {
return is_directory(__status(__p, &__ec));
}
-_LIBCPP_EXPORTED_FROM_ABI bool __fs_is_empty(const path& __p, error_code* __ec = nullptr);
----------------
ldionne wrote:
I think we should do this move as a separate NFC change which can land any time.
https://github.com/llvm/llvm-project/pull/131156
More information about the libcxx-commits
mailing list