aboutsummaryrefslogtreecommitdiff
path: root/src/stable/string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/stable/string.cpp')
-rw-r--r--src/stable/string.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/stable/string.cpp b/src/stable/string.cpp
index ed4e58b..98b78bd 100644
--- a/src/stable/string.cpp
+++ b/src/stable/string.cpp
@@ -516,6 +516,16 @@ const char *Bu::String::getStr() const
516 return core->pFirst->pData; 516 return core->pFirst->pData;
517} 517}
518 518
519char *Bu::String::getData()
520{
521 return getStr();
522}
523
524const char *Bu::String::getData() const
525{
526 return getStr();
527}
528
519const char *Bu::String::getConstStr() const 529const char *Bu::String::getConstStr() const
520{ 530{
521 return getStr(); 531 return getStr();