diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2013-10-04 21:03:31 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2013-10-05 13:42:46 -0700 |
commit | 70214054e84b920ca3bea5119bd5d1456c809054 (patch) | |
tree | 0a9383d460c8988f788f4ef7adcd567526b35a75 /src/strings/base.hpp | |
parent | caae1e38d0d239f4f7088a64526fe1d2f6587999 (diff) | |
download | tmwa-70214054e84b920ca3bea5119bd5d1456c809054.tar.gz tmwa-70214054e84b920ca3bea5119bd5d1456c809054.tar.bz2 tmwa-70214054e84b920ca3bea5119bd5d1456c809054.tar.xz tmwa-70214054e84b920ca3bea5119bd5d1456c809054.zip |
Remove owning slices
They were hardly ever used, hid errors, and were obsoleted by baseful x'es.
Diffstat (limited to 'src/strings/base.hpp')
-rw-r--r-- | src/strings/base.hpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/strings/base.hpp b/src/strings/base.hpp index 2ea303f..8c0e924 100644 --- a/src/strings/base.hpp +++ b/src/strings/base.hpp @@ -190,14 +190,6 @@ namespace strings auto operator > (const L& l, const R& r) -> decltype((pair_compare(l, r), true)); template<class L, class R, typename=typename std::enable_if<string_comparison_allowed<L, R>::value>::type> auto operator >= (const L& l, const R& r) -> decltype((pair_compare(l, r), true)); - - // sadness - typedef MString MS; - typedef FString FS; - typedef TString TS; - typedef SString SS; - typedef ZString ZS; - typedef XString XS; } // namespace strings #include "base.tcc" |