Skip to content

Commit

Permalink
libc++abi: update comment in cxa_thread_atexit.cpp. NFC (#18501)
Browse files Browse the repository at this point in the history
  • Loading branch information
kleisauke committed Jan 16, 2023
1 parent 405c3fb commit 1af985d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system/lib/libcxxabi/src/cxa_thread_atexit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ extern "C" {
return __cxa_thread_atexit_impl(dtor, obj, dso_symbol);
#else
#ifndef __EMSCRIPTEN__
// Emscripten doesn't fully support weak undefined symbols yet
// https://github.com/emscripten-core/emscripten/issues/12819
// Emscripten doesn't implement __cxa_thread_atexit_impl, so we can simply
// avoid this check.
if (__cxa_thread_atexit_impl) {
return __cxa_thread_atexit_impl(dtor, obj, dso_symbol);
} else
Expand Down

0 comments on commit 1af985d

Please sign in to comment.