Skip to content
Snippets Groups Projects
Commit ba13cc52 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Remove typenames

parent 6b162e0d
No related branches found
No related tags found
No related merge requests found
......@@ -5,13 +5,13 @@
template<class V>
typename base_floatingpoint<V>::value horizontal_add_lower(const V& x)
base_floatingpoint<V>::value horizontal_add_lower(const V& x)
{
return horizontal_add(x.get_low());
}
template<class V>
typename base_floatingpoint<V>::value horizontal_add_upper(const V& x)
base_floatingpoint<V>::value horizontal_add_upper(const V& x)
{
return horizontal_add(x.get_high());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment