className(): remove unused argument object for the className(foo) variant

some compilers may warn about this under some circumstances.
This commit is contained in:
Andreas Lauser 2013-09-20 12:18:10 +02:00
parent d416ed279b
commit c3cc059860

View File

@ -88,7 +88,7 @@ std::string className()
/** \brief Provide the demangled class name of a given object as a string */
template <class T>
std::string className(const T &t)
std::string className(const T &)
{
return ClassNameHelper_<T>::name();
}