Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
0da92aaf
Commit
0da92aaf
authored
Apr 03, 2009
by
zhanyong.wan
Browse files
Fixes the comment about GTEST_ATTRIBUTE_UNUSED_.
parent
5f7c33d3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
include/gtest/internal/gtest-port.h
include/gtest/internal/gtest-port.h
+6
-3
No files found.
include/gtest/internal/gtest-port.h
View file @
0da92aaf
...
@@ -96,8 +96,8 @@
...
@@ -96,8 +96,8 @@
//
//
// Macros for basic C++ coding:
// Macros for basic C++ coding:
// GTEST_AMBIGUOUS_ELSE_BLOCKER_ - for disabling a gcc warning.
// GTEST_AMBIGUOUS_ELSE_BLOCKER_ - for disabling a gcc warning.
// GTEST_ATTRIBUTE_UNUSED_ - declares that a class' instances
don't have to
// GTEST_ATTRIBUTE_UNUSED_ - declares that a class' instances
or a
// be used.
//
variable don't have to
be used.
// GTEST_DISALLOW_COPY_AND_ASSIGN_ - disables copy ctor and operator=.
// GTEST_DISALLOW_COPY_AND_ASSIGN_ - disables copy ctor and operator=.
// GTEST_MUST_USE_RESULT_ - declares that a function's result must be used.
// GTEST_MUST_USE_RESULT_ - declares that a function's result must be used.
//
//
...
@@ -439,7 +439,7 @@
...
@@ -439,7 +439,7 @@
#define GTEST_AMBIGUOUS_ELSE_BLOCKER_ switch (0) case 0: // NOLINT
#define GTEST_AMBIGUOUS_ELSE_BLOCKER_ switch (0) case 0: // NOLINT
#endif
#endif
// Use this annotation at the end of a struct
/
class definition to
// Use this annotation at the end of a struct
/
class definition to
// prevent the compiler from optimizing away instances that are never
// prevent the compiler from optimizing away instances that are never
// used. This is useful when all interesting logic happens inside the
// used. This is useful when all interesting logic happens inside the
// c'tor and / or d'tor. Example:
// c'tor and / or d'tor. Example:
...
@@ -447,6 +447,9 @@
...
@@ -447,6 +447,9 @@
// struct Foo {
// struct Foo {
// Foo() { ... }
// Foo() { ... }
// } GTEST_ATTRIBUTE_UNUSED_;
// } GTEST_ATTRIBUTE_UNUSED_;
//
// Also use it after a variable or parameter declaration to tell the
// compiler the variable/parameter does not have to be used.
#if defined(__GNUC__) && !defined(COMPILER_ICC)
#if defined(__GNUC__) && !defined(COMPILER_ICC)
#define GTEST_ATTRIBUTE_UNUSED_ __attribute__ ((unused))
#define GTEST_ATTRIBUTE_UNUSED_ __attribute__ ((unused))
#else
#else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment