Changed: Added substr to ucstring
This commit is contained in:
parent
99c0124f2c
commit
77b5f84ba9
1 changed files with 5 additions and 0 deletions
|
@ -184,6 +184,11 @@ public:
|
|||
return res;
|
||||
}
|
||||
|
||||
ucstring substr(size_type pos = 0, size_type n = npos) const
|
||||
{
|
||||
return ucstringbase::substr(pos, n);
|
||||
}
|
||||
|
||||
// for luabind (can't bind to 'substr' else ...)
|
||||
ucstring luabind_substr(size_type pos = 0, size_type n = npos) const
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue