Skip to content

Commit

Permalink
Revert "[libc++abi] Change __cxa_finalize return type to void"
Browse files Browse the repository at this point in the history
This reverts commit fde9d33, which was not properly reviewed by a
libc++ or libc++abi code owner.
  • Loading branch information
ldionne committed Mar 10, 2020
1 parent c0f4408 commit 0b017c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcxxabi/include/cxxabi.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ __cxa_vec_cctor(void *dest_array, void *src_array, size_t element_count,
// 3.3.5.3 Runtime API
extern _LIBCXXABI_FUNC_VIS int __cxa_atexit(void (*f)(void *), void *p,
void *d);
extern _LIBCXXABI_FUNC_VIS void __cxa_finalize(void *);
extern _LIBCXXABI_FUNC_VIS int __cxa_finalize(void *);

// 3.4 Demangler API
extern _LIBCXXABI_FUNC_VIS char *__cxa_demangle(const char *mangled_name,
Expand Down

0 comments on commit 0b017c8

Please sign in to comment.