Skip to content
Snippets Groups Projects
Commit 6a803419 authored by Martin Nolte's avatar Martin Nolte
Browse files

NEVER USE PREPROCESSOR SYMBOLS TO RENAME SOMETHING!

[[Imported from SVN: r5352]]
parent 57a81178
Branches
Tags
No related merge requests found
......@@ -435,7 +435,12 @@ namespace Dune {
};
#endif
#define ElementType tuple_element
template< int N, class Tuple >
struct ElementType
{
typedef typename tuple_element< N, Tuple > :: type Type DUNE_DEPRECATED;
};
#if defined HAVE_TUPLE || defined HAVE_TR1_TUPLE
#ifdef HAVE_TUPLE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment