From c399119694ae91b02286ecacfed1f4826bbc99e5 Mon Sep 17 00:00:00 2001 From: Graham Lee Date: Thu, 18 Feb 2021 11:53:20 +0000 Subject: [PATCH] Remove redundant declaration of __cxa_allocate_exception Fixes #193 --- objcxx_eh.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/objcxx_eh.cc b/objcxx_eh.cc index add5dea..fe8aae1 100644 --- a/objcxx_eh.cc +++ b/objcxx_eh.cc @@ -16,8 +16,6 @@ int eh_trampoline(); uint64_t cxx_exception_class; -extern "C" void *__cxa_allocate_exception(size_t) noexcept; - /** * Our own definitions of C++ ABI functions and types. These are provided * because this file must not include cxxabi.h. We need to handle subtly