Skip to content
Snippets Groups Projects
Commit 1f9a2dd4 authored by Oliver Sander's avatar Oliver Sander
Browse files

Remove the 'Same' struct.

a) it appears overly complicated.  Why not just use '=='?
b) it is never used anyway

[[Imported from SVN: r6647]]
parent 279b95a6
No related branches found
No related tags found
No related merge requests found
......@@ -14,18 +14,6 @@
using namespace Dune;
template<int i, int j>
struct Same
{
enum { value = false};
};
template<int i>
struct Same<i,i>
{
enum { value = true};
};
template<class T>
void test(T& tuple)
{
......
......@@ -32,18 +32,6 @@
using namespace Dune;
template<int i, int j>
struct Same
{
enum { value = false};
};
template<int i>
struct Same<i,i>
{
enum { value = true};
};
template<class T>
void test(T& tuple)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment