[libcxx-commits] [libcxx] [libcxx] Use alias for detecting overriden function (PR #114961)
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Nov 5 12:34:13 PST 2024
================
@@ -29,7 +29,7 @@
// This is a low-level utility which does not work on all platforms, since it needs
// to make assumptions about the object file format in use. Furthermore, it requires
// the "base definition" of the function (the one we want to check whether it has been
-// overridden) to be annotated with the _LIBCPP_MAKE_OVERRIDABLE_FUNCTION_DETECTABLE macro.
+// overridden) to be defined using the _LIBCPP_OVERRIDABLE_FUNCTION macro.
//
// This currently works with Mach-O files (used on Darwin) and with ELF files (used on Linux
// and others). On platforms where we know how to implement this detection, the macro
----------------
ldionne wrote:
The documentation right below this line needs to be updated.
https://github.com/llvm/llvm-project/pull/114961
More information about the libcxx-commits
mailing list