diff options
Diffstat (limited to 'Source/Kernel/Library/String.class.h')
-rw-r--r-- | Source/Kernel/Library/String.class.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Kernel/Library/String.class.h b/Source/Kernel/Library/String.class.h index 6a9de64..6216415 100644 --- a/Source/Kernel/Library/String.class.h +++ b/Source/Kernel/Library/String.class.h @@ -46,8 +46,8 @@ class String { String operator+ (const char* other) const { return concat(other); } String operator+ (WChar other) const { return concat(other); } - s32int toInt() const; //Convert from DEC - u32int toInt16() const; //Convert from HEX + s64int toInt() const; //Convert from DEC + u64int toInt16() const; //Convert from HEX WChar& operator[] (int index) const; |