diff options
Diffstat (limited to 'src/strings/rstring.tcc')
-rw-r--r-- | src/strings/rstring.tcc | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/strings/rstring.tcc b/src/strings/rstring.tcc index 8b4c0c0..c247b8f 100644 --- a/src/strings/rstring.tcc +++ b/src/strings/rstring.tcc @@ -19,6 +19,9 @@ #include "mstring.hpp" + +namespace tmwa +{ namespace strings { template<class It> @@ -47,12 +50,6 @@ namespace strings owned->body[diff] = '\0'; } - template<size_t n> - RString::RString(const char (&s)[n]) - { - _assign(s, s + strlen(s)); - } - template<class It> RString::RString(It b, It e) { @@ -65,3 +62,4 @@ namespace strings _assign(v.begin(), v.end()); } } // namespace strings +} // namespace tmwa |