Skip to content
Snippets Groups Projects
Commit 86b012f5 authored by Christian Engwer's avatar Christian Engwer
Browse files

Revert "Add a few explicit casts to silence warnings concerning overloading ambiguities"

This reverts commit cf4bf4d8.

The epxlicit cast isn't needed anymore as we have a fix for the
ambiguous operator overload.
parent cca8ac1b
No related branches found
No related tags found
No related merge requests found
......@@ -154,12 +154,12 @@ struct ScalarOperatorTest
v = a / v;
v -= v;
v -= (ft)a;
v -= a;
v += v;
v += (ft)a;
v *= (ft)a;
v += a;
v *= a;
a += (ft)1; // make sure a!=0
v /= (ft)a;
v /= a;
b = (v == a);
b = (v != a);
......
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