summaryrefslogtreecommitdiff
path: root/src/range/slice.tcc
diff options
context:
space:
mode:
Diffstat (limited to 'src/range/slice.tcc')
-rw-r--r--src/range/slice.tcc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/range/slice.tcc b/src/range/slice.tcc
index 45dac50..a1c136f 100644
--- a/src/range/slice.tcc
+++ b/src/range/slice.tcc
@@ -19,6 +19,9 @@
#include <cassert>
+
+namespace tmwa
+{
// simple pointer-wrapping iterator
template<class T>
class Slice<T>::iterator
@@ -212,3 +215,4 @@ Slice<T> Slice<T>::islice(iterator b, iterator e) const
{
return Slice(&*b, &*e);
}
+} // namespace tmwa