Skip to content

Commit

Permalink
fix compilation for newer gtest
Browse files Browse the repository at this point in the history
  • Loading branch information
fredroy committed Jan 31, 2024
1 parent ccdc89f commit e71ab1a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Sofa/framework/Testing/test/TestMessageHandler_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ class GTEST_API_ AnyFailureChecker {
const TestPartResult::Type type_;
const std::string substr_;

GTEST_DISALLOW_COPY_AND_ASSIGN_(AnyFailureChecker);
AnyFailureChecker(const AnyFailureChecker&) = delete;
AnyFailureChecker& operator=(const AnyFailureChecker&) =
delete;
};


Expand Down

0 comments on commit e71ab1a

Please sign in to comment.