Commit 69a41343 authored by Oleg Korshul's avatar Oleg Korshul

build with clang++

parent 578327ba
......@@ -410,7 +410,7 @@ private:
}
if (carry > 0)
temp.insert(0, 1, (carry+'0'));
temp.insert(0, 1, (char)(carry+'0'));
temp.append((n1.length() - i - 1), '0'); // as like mult by 10, 100, 1000, 10000 and so on
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment