File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Core/GameEngine/Include/Common Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,8 @@ class AsciiString
149149 AsciiString (const char * s);
150150
151151 /* *
152- Constructor -- from a literal string and max length.
152+ Constructs an AsciiString with the given string and length.
153+ The length must not be larger than the actual string length.
153154 */
154155 AsciiString (const char * s, int len);
155156
Original file line number Diff line number Diff line change @@ -149,7 +149,8 @@ class UnicodeString
149149 explicit UnicodeString (const WideChar* s);
150150
151151 /* *
152- Constructor -- from a literal string and max length.
152+ Constructs an UnicodeString with the given string and length.
153+ The length must not be larger than the actual string length.
153154 */
154155 UnicodeString (const WideChar* s, int len);
155156
You can’t perform that action at this time.
0 commit comments