summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgonzalobg <65027571+gonzalobg@users.noreply.github.com>2023-03-23 10:26:58 +0100
committergonzalobg <65027571+gonzalobg@users.noreply.github.com>2023-03-23 10:28:12 +0100
commit5d6ba6d3b0a836f373d5ae83688880381cb7b3d4 (patch)
tree81441433020423760233c1a9ae746026a3720131
parentab669cad0eea4cbe59faf9a421ab01db30ebc13c (diff)
downloadgoogletest-git-5d6ba6d3b0a836f373d5ae83688880381cb7b3d4.tar.gz
Add doc comment
-rw-r--r--googletest/include/gtest/internal/gtest-port.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/include/gtest/internal/gtest-port.h b/googletest/include/gtest/internal/gtest-port.h
index 77549e84..adf6f0b5 100644
--- a/googletest/include/gtest/internal/gtest-port.h
+++ b/googletest/include/gtest/internal/gtest-port.h
@@ -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