[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
Fri Mar 6 21:59:41 PST 2020


rprichard added inline comments.


================
Comment at: libcxxabi/include/cxxabi.h:141
                                             void *d);
-extern _LIBCXXABI_FUNC_VIS int __cxa_finalize(void *);
+extern _LIBCXXABI_FUNC_VIS void __cxa_finalize(void*);
 
----------------
MaskRay wrote:
> `void*` -> `void *`
Ok, I can put that back. I had run `git clang-format HEAD~1`, and that changed it to `void*`, but `void *` is more consistent with the rest of the file.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D75795/new/

https://reviews.llvm.org/D75795





More information about the libcxx-commits mailing list