summaryrefslogtreecommitdiffstats
path: root/source/core/slang-string.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/core/slang-string.h')
-rw-r--r--source/core/slang-string.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/core/slang-string.h b/source/core/slang-string.h
index 98fd51a07..ed333f8e8 100644
--- a/source/core/slang-string.h
+++ b/source/core/slang-string.h
@@ -257,9 +257,10 @@ namespace Slang
return getData() + getLength();
}
- void append(int value, int radix = 10);
- void append(unsigned int value, int radix = 10);
- void append(long long value, int radix = 10);
+ void append(int32_t value, int radix = 10);
+ void append(uint32_t value, int radix = 10);
+ void append(int64_t value, int radix = 10);
+ void append(uint64_t value, int radix = 10);
void append(float val, const char * format = "%g");
void append(double val, const char * format = "%g");