diff options
Diffstat (limited to 'src/range/slice.tcc')
-rw-r--r-- | src/range/slice.tcc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/range/slice.tcc b/src/range/slice.tcc index 3a1ceb5..a1c136f 100644 --- a/src/range/slice.tcc +++ b/src/range/slice.tcc @@ -1,4 +1,4 @@ -// strings/base.tcc - Inline functions for strings/base.hpp +// ranges/slice.tcc - Inline functions for strings/base.hpp // // Copyright © 2013 Ben Longbons <b.r.longbons@gmail.com> // @@ -19,8 +19,9 @@ #include <cassert> -#include <algorithm> +namespace tmwa +{ // simple pointer-wrapping iterator template<class T> class Slice<T>::iterator @@ -214,3 +215,4 @@ Slice<T> Slice<T>::islice(iterator b, iterator e) const { return Slice(&*b, &*e); } +} // namespace tmwa |