summaryrefslogtreecommitdiff
path: root/zen/legacy_compiler.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/legacy_compiler.h')
-rwxr-xr-xzen/legacy_compiler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zen/legacy_compiler.h b/zen/legacy_compiler.h
index bebf5a05..54605945 100755
--- a/zen/legacy_compiler.h
+++ b/zen/legacy_compiler.h
@@ -27,10 +27,10 @@ public:
template <class Container>
span(Container& cont) : span(cont.begin(), cont.end()) {}
-
+
using iterator = T*;
using const_iterator = const T*;
-
+
iterator begin() { return data_; }
iterator end () { return data_ + size_; }
bgstack15