Use powl instead of pow in Parser.hpp

Signed-off-by: Username404 <w.iron.zombie@gmail.com>
This commit is contained in:
Username404 2022-03-22 15:52:06 +01:00
parent ce8e21ee25
commit db0ada09f6
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -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;