I fixed a few here, but there are lots more. They light up if you build
with clang.

--- i/include/numerics/type_n_tensor.h
+++ w/include/numerics/type_n_tensor.h
@@ -67,7 +67,7 @@ public:
   /**
    * Return a proxy for the \f$ i^{th} \f$ slice of the tensor.
    */
-  const TypeNTensor<N-1,T> slice (const unsigned int i) const
+  const TypeNTensor<N-1,T> slice (const unsigned int /* i */) const
     { return TypeNTensor<N-1,T>(); }

   /**
@@ -166,14 +166,14 @@ public:
    * @returns \p true if this tensor is "less"
    * than another.  Useful for sorting.
    */
-  bool operator < (const TypeNTensor<N,T>& rhs) const
+  bool operator < (const TypeNTensor<N,T>& /* rhs */) const
     { return false; }

   /**
    * @returns \p true if this tensor is "greater"
    * than another.
    */
-  bool operator > (const TypeNTensor<N,T>& rhs) const
+  bool operator > (const TypeNTensor<N,T>& /* rhs */) const
     { return false; }

   /**
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Libmesh-devel mailing list
Libmesh-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/libmesh-devel

Reply via email to