diff options
Diffstat (limited to 'fixedstring.h')
-rw-r--r-- | fixedstring.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fixedstring.h b/fixedstring.h index 46d1011..e8db0bf 100644 --- a/fixedstring.h +++ b/fixedstring.h @@ -54,6 +54,7 @@ class FixedLengthString size_type size() const { return length(); } void clear() { m_end = m_data; } void push_back(char c); + const char* constData() const { return m_data; } int compare(const FixedLengthString& s) const; |