File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
deps/googletest/include/gtest Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -1610,6 +1610,8 @@ GTEST_API_ AssertionResult DoubleNearPredFormat(const char* expr1,
1610
1610
double val1, double val2,
1611
1611
double abs_error);
1612
1612
1613
+ using GoogleTest_NotSupported_OnFunctionReturningNonVoid = void ;
1614
+
1613
1615
// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
1614
1616
// A class that enables one to stream messages to assertion macros
1615
1617
class GTEST_API_ AssertHelper {
@@ -1621,7 +1623,8 @@ class GTEST_API_ AssertHelper {
1621
1623
1622
1624
// Message assignment is a semantic trick to enable assertion
1623
1625
// streaming; see the GTEST_MESSAGE_ macro below.
1624
- void operator =(const Message& message) const ;
1626
+ GoogleTest_NotSupported_OnFunctionReturningNonVoid operator =(
1627
+ const Message& message) const ;
1625
1628
1626
1629
private:
1627
1630
// We put our data in a struct so that the size of the AssertHelper class can
You can’t perform that action at this time.
0 commit comments