add to string impl for length func - closes #2437

This commit is contained in:
Dane Springmeyer 2014-09-24 17:37:16 -07:00
parent fb60492696
commit eb8686388f

View file

@ -113,6 +113,7 @@ char const* unary_function_name(unary_function_impl const& fun)
else if (fun.target<atan_impl>()) return "atan";
else if (fun.target<exp_impl>()) return "exp";
else if (fun.target<abs_impl>()) return "abs";
else if (fun.target<length_impl>()) return "length";
else return "unknown";
}