diff --git a/dune/common/enumset.hh b/dune/common/enumset.hh
index 1e04d6ab1ec942a04a0324eb1e2f5564f220cd35..a1dfad6772032c43cce1d4f8e6f0253015449dbd 100644
--- a/dune/common/enumset.hh
+++ b/dune/common/enumset.hh
@@ -73,15 +73,15 @@ namespace Dune
   /**
    * @brief A set representing a range including the borders.
    */
-  template<typename T,int from, int end>
+  template<typename TA,int from, int end>
   class EnumRange //: public PODSet<EnumRange<T,from,end>,T>
   {
   public:
     /**
      * @brief The type the set holds.
      */
-    typedef T Type;
-    static bool contains(const T& item);
+    typedef TA Type;
+    static bool contains(const TA& item);
   };
 
   /**