Fixed vsnprintf.

This commit is contained in:
Branimir Karadžić
2018-10-25 17:57:33 -07:00
parent 7ad3cf4f89
commit 9bf79c70cc
4 changed files with 25 additions and 14 deletions

View File

@@ -28,7 +28,7 @@ namespace bx
StringView();
///
StringView(const StringView& _rhs);
StringView(const StringView& _rhs, int32_t _start = 0, int32_t _len = INT32_MAX);
///
StringView& operator=(const char* _rhs);
@@ -68,7 +68,7 @@ namespace bx
void set(const char* _ptr, const char* _term);
///
void set(const StringView& _str);
void set(const StringView& _str, int32_t _start = 0, int32_t _len = INT32_MAX);
///
template<typename Ty>