Improved support for testing on older versions of gcc.

Link tests.
Plus more...


[SVN r2980]
This commit is contained in:
Daniel James
2006-06-11 19:42:55 +00:00
parent 653a58f39b
commit 58dda15273
11 changed files with 222 additions and 23 deletions

View File

@@ -14,8 +14,8 @@
namespace test
{
template <class T>
bool equivalent_impl(T const& x, T const& y) {
template <class T1, class T2>
bool equivalent_impl(T1 const& x, T2 const& y) {
return x == y;
}