From 002f37b0cca92e4cf72857c72ac95db5a8b09615 Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Tue, 3 Jun 2014 15:27:53 +0200 Subject: [PATCH] Explicit template instanciation to please gcc2. Makes CPPUNIT_ASSERT_EQUAL useable. --- headers/tools/cppunit/cppunit/TestAssert.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/headers/tools/cppunit/cppunit/TestAssert.h b/headers/tools/cppunit/cppunit/TestAssert.h index d4f1315cdd..c20491022b 100644 --- a/headers/tools/cppunit/cppunit/TestAssert.h +++ b/headers/tools/cppunit/cppunit/TestAssert.h @@ -173,7 +173,7 @@ namespace CppUnit { * removed by specializing the CppUnit::assertion_traits. */ #define CPPUNIT_ASSERT_EQUAL(expected,actual) \ - ( ::CppUnit::TestAssert::assertEquals( (expected), \ + ( ::CppUnit::TestAssert::assertEquals( (expected), \ (actual), \ CPPUNIT_SOURCELINE() ) ) @@ -196,7 +196,7 @@ namespace CppUnit { * removed by specializing the CppUnit::assertion_traits. */ #define CPPUNIT_ASSERT_EQUAL_MESSAGE(message,expected,actual) \ - ( ::CppUnit::TestAssert::assertEquals( (expected), \ + ( ::CppUnit::TestAssert::assertEquals( (expected), \ (actual), \ CPPUNIT_SOURCELINE(), \ (message) ) )