aboutsummaryrefslogtreecommitdiff
path: root/test/test_helper.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_helper.h')
-rw-r--r--test/test_helper.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/test_helper.h b/test/test_helper.h
index b78d9a6..f1356a4 100644
--- a/test/test_helper.h
+++ b/test/test_helper.h
@@ -28,11 +28,6 @@ void ASSERT_EQ(T1 expected, T2 have) {
}
}
-template<typename T1, typename T2>
-void ASSERT_EQ(T1* expected, T2* have) {
- ASSERT_EQ(*expected, *have);
-}
-
// Char string based ASSERT_* helper.
template<>