Add doc comment

This commit is contained in:
gonzalobg 2023-03-23 10:26:58 +01:00
parent ab669cad0e
commit 5d6ba6d3b0

View File

@ -794,7 +794,7 @@ typedef struct _RTL_CRITICAL_SECTION GTEST_CRITICAL_SECTION;
// Ask the compiler not to perform tail call optimization inside
// the marked function.
#define GTEST_NO_TAIL_CALL_ __attribute__((disable_tail_calls))
#elif __GNUC__ && !defined(__NVCOMPILER)
#elif __GNUC__ && !defined(__NVCOMPILER) // NVIDIA C++ Compiler warnings
#define GTEST_NO_TAIL_CALL_ \
__attribute__((optimize("no-optimize-sibling-calls")))
#else