diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-16 05:20:33 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-16 05:20:33 +0000 |
| commit | 0f7e3be6b60888912dc9c7089e23074ef64373e0 (patch) | |
| tree | 406adb3e4986b0f65c70abcbb8582e7dc2956d09 /otk/ustring.cc | |
| parent | a8e98570cc32fc4b9015927acef4a24c015f799e (diff) | |
make an optional bool param for ustring's default constructor
Diffstat (limited to 'otk/ustring.cc')
| -rw-r--r-- | otk/ustring.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/otk/ustring.cc b/otk/ustring.cc index 8c48cb4d..b6432d44 100644 --- a/otk/ustring.cc +++ b/otk/ustring.cc @@ -111,7 +111,8 @@ ustring::size_type utf8_byte_offset(const char* str, ustring::size_type offset, // ustring methods -ustring::ustring() +ustring::ustring(bool utf8) + : _utf8(utf8) { } |
