Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kestrel Collaboration
Kestrel Firmware
googletest
Commits
0b4ecf54
Commit
0b4ecf54
authored
4 years ago
by
Abseil Team
Committed by
Andy Soffer
4 years ago
Browse files
Options
Download
Email Patches
Plain Diff
Internal change
PiperOrigin-RevId: 356572459
parent
e1657734
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
googletest/include/gtest/gtest.h
googletest/include/gtest/gtest.h
+6
-7
No files found.
googletest/include/gtest/gtest.h
View file @
0b4ecf54
...
...
@@ -1616,21 +1616,20 @@ AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \
} else {\
return CmpHelperOpFailure(expr1, expr2, val1, val2, #op);\
}\
}\
static_assert(true, "Consume semicolon.")
}
// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
// Implements the helper function for {ASSERT|EXPECT}_NE
GTEST_IMPL_CMP_HELPER_
(
NE
,
!=
)
;
GTEST_IMPL_CMP_HELPER_
(
NE
,
!=
)
// Implements the helper function for {ASSERT|EXPECT}_LE
GTEST_IMPL_CMP_HELPER_
(
LE
,
<=
)
;
GTEST_IMPL_CMP_HELPER_
(
LE
,
<=
)
// Implements the helper function for {ASSERT|EXPECT}_LT
GTEST_IMPL_CMP_HELPER_
(
LT
,
<
)
;
GTEST_IMPL_CMP_HELPER_
(
LT
,
<
)
// Implements the helper function for {ASSERT|EXPECT}_GE
GTEST_IMPL_CMP_HELPER_
(
GE
,
>=
)
;
GTEST_IMPL_CMP_HELPER_
(
GE
,
>=
)
// Implements the helper function for {ASSERT|EXPECT}_GT
GTEST_IMPL_CMP_HELPER_
(
GT
,
>
)
;
GTEST_IMPL_CMP_HELPER_
(
GT
,
>
)
#undef GTEST_IMPL_CMP_HELPER_
...
...
This diff is collapsed.
Click to expand it.
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