Use powl instead of pow in Parser.hpp
Signed-off-by: Username404 <w.iron.zombie@gmail.com>
This commit is contained in:
parent
ce8e21ee25
commit
db0ada09f6
|
@ -48,7 +48,7 @@ namespace Parser {
|
|||
if (nextAre({DOT, NUMBER})) {
|
||||
i += 2;
|
||||
const string& right = lexed[i].toktext;
|
||||
Int.value += stold(right) / pow(10, right.size());
|
||||
Int.value += stold(right) / powl(10, right.size());
|
||||
}
|
||||
parseTree << Int;
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue