Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Starting in gcc 11, <cxxabi.h> declares the __cxa_finalize() function to return void, not an int as it was previously. The change has no practical importance (our implementation always returned 0 anyway, there was never any interesting integer to returned). But to get our implementation to compile against both gcc-11 and pre-gcc-11's version of cxxabi.h, we need to hide cxxabi.h's declaration. Signed-off-by: Nadav Har'El <[email protected]> Message-Id: <[email protected]>
- Loading branch information