1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-07-01 06:27:11 +02:00

Potential fix for missing itoa compile error.

This commit is contained in:
Sandu Liviu Catalin
2019-02-09 17:43:27 +02:00
parent 0f0b795ca9
commit d0c8dc3071
2 changed files with 181 additions and 1 deletions

View File

@ -52,7 +52,7 @@ public:
static void Get(const SQChar* name, int args, string & out) {
SQChar buf[16] = {'_', 'o'};
itoa(args, &buf[2], 10);
I32ToA_(args, &buf[2]);
out.append(buf);
out.push_back('_');
out.append(name);