[libc++abi][NFC] Add comment on long reaching #if
authorLouis Dionne <ldionne.2@gmail.com>
Thu, 12 May 2022 17:26:16 +0000 (13:26 -0400)
committerLouis Dionne <ldionne.2@gmail.com>
Thu, 12 May 2022 17:26:55 +0000 (13:26 -0400)
libcxxabi/src/cxa_default_handlers.cpp

index 800204c..49e21c9 100644 (file)
@@ -93,10 +93,10 @@ static void demangling_unexpected_handler()
 
 static constexpr std::terminate_handler default_terminate_handler = demangling_terminate_handler;
 static constexpr std::terminate_handler default_unexpected_handler = demangling_unexpected_handler;
-#else
+#else // !LIBCXXABI_SILENT_TERMINATE
 static constexpr std::terminate_handler default_terminate_handler = ::abort;
 static constexpr std::terminate_handler default_unexpected_handler = std::terminate;
-#endif
+#endif // !LIBCXXABI_SILENT_TERMINATE
 
 //
 // Global variables that hold the pointers to the current handler