remove unneeded lvalue parameter

This commit is contained in:
Dennis Luxen 2015-01-05 12:00:11 +01:00
parent fe1f11b071
commit 061f46306f

View File

@ -145,7 +145,7 @@ struct cast
template <typename T> struct scientific_policy : boost::spirit::karma::real_policies<T>
{
// we want the numbers always to be in fixed format
static int floatfield(T n)
static int floatfield(T)
{
return boost::spirit::karma::real_policies<T>::fmtflags::fixed;
}