[libcxx-commits] [PATCH] D75795: [libc++abi] Change __cxa_finalize return type to void
Ryan Prichard via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Mar 10 14:49:59 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rGfde9d33f7101: [libc++abi] Change __cxa_finalize return type to void (authored by rprichard).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D75795/new/
https://reviews.llvm.org/D75795
Files:
libcxxabi/include/cxxabi.h
Index: libcxxabi/include/cxxabi.h
===================================================================
--- libcxxabi/include/cxxabi.h
+++ libcxxabi/include/cxxabi.h
@@ -138,7 +138,7 @@
// 3.3.5.3 Runtime API
extern _LIBCXXABI_FUNC_VIS int __cxa_atexit(void (*f)(void *), void *p,
void *d);
-extern _LIBCXXABI_FUNC_VIS int __cxa_finalize(void *);
+extern _LIBCXXABI_FUNC_VIS void __cxa_finalize(void *);
// 3.4 Demangler API
extern _LIBCXXABI_FUNC_VIS char *__cxa_demangle(const char *mangled_name,
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D75795.249502.patch
Type: text/x-patch
Size: 548 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20200310/a7832783/attachment.bin>
More information about the libcxx-commits
mailing list