[libcxx-commits] [libcxx] fe7cd1d - [libc++][NFC] Improve comment about vector and string base class ABI flags

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Mon May 30 13:26:57 PDT 2022


Author: Louis Dionne
Date: 2022-05-30T16:26:49-04:00
New Revision: fe7cd1d199f2d082d5ed096fe60db5529e431896

URL: https://github.com/llvm/llvm-project/commit/fe7cd1d199f2d082d5ed096fe60db5529e431896
DIFF: https://github.com/llvm/llvm-project/commit/fe7cd1d199f2d082d5ed096fe60db5529e431896.diff

LOG: [libc++][NFC] Improve comment about vector and string base class ABI flags

Added: 
    

Modified: 
    libcxx/include/__config

Removed: 
    


################################################################################
diff  --git a/libcxx/include/__config b/libcxx/include/__config
index 14e6850ebdc1..5b50e056cf8d 100644
--- a/libcxx/include/__config
+++ b/libcxx/include/__config
@@ -110,9 +110,9 @@
 // compatible. This switch removes these workarounds for platforms that don't care
 // about ABI compatibility.
 #  define _LIBCPP_ABI_NO_RANDOM_DEVICE_COMPATIBILITY_LAYOUT
-// Remove basic_string common base
+// Don't export the legacy __basic_string_common class and its methods from the built library.
 #  define _LIBCPP_ABI_DO_NOT_EXPORT_BASIC_STRING_COMMON
-// Remove vector base class
+// Don't export the legacy __vector_base_common class and its methods from the built library.
 #  define _LIBCPP_ABI_DO_NOT_EXPORT_VECTOR_BASE_COMMON
 // According to the Standard, `bitset::operator[] const` returns bool
 #  define _LIBCPP_ABI_BITSET_VECTOR_BOOL_CONST_SUBSCRIPT_RETURN_BOOL


        


More information about the libcxx-commits mailing list