Skip to content
Snippets Groups Projects
Commit cf4bf4d8 authored by Oliver Sander's avatar Oliver Sander
Browse files

Add a few explicit casts to silence warnings concerning overloading ambiguities

parent 74fa3315
No related merge requests found
......@@ -154,12 +154,12 @@ struct ScalarOperatorTest
v = a / v;
v -= v;
v -= a;
v -= (ft)a;
v += v;
v += a;
v *= a;
v += (ft)a;
v *= (ft)a;
a += (ft)1; // make sure a!=0
v /= a;
v /= (ft)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