Skip to content
Snippets Groups Projects
Commit 6824aeb3 authored by Ansgar Burchardt's avatar Ansgar Burchardt
Browse files

bigunsignedint: Remove unneeded variable in operator%.

parent fef5f72e
No related branches found
No related tags found
No related merge requests found
......@@ -342,11 +342,9 @@ namespace Dune
{
// better slow than nothing
bigunsignedint<k> temp(*this);
bigunsignedint<k> result(0);
while (temp>=x)
{
++result;
temp = temp-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