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

Fixup

parent 9a9192e4
No related branches found
No related tags found
No related merge requests found
......@@ -6,19 +6,19 @@
template<class V>
typename base_floatingpoint<V>::value horizontal_add_lower(const V& x)
typename base_floatingpoint<V>::value permuting_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)
typename base_floatingpoint<V>::value permuting_horizontal_add_upper(const V& x)
{
return horizontal_add(x.get_high());
}
template<class V>
typename base_floatingpoint<V>::value horizontal_add(const V& x)
typename base_floatingpoint<V>::value permuting_horizontal_add(const V& x)
{
return horizontal_add(x);
}
......
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