From 7c855d11f23dc03d64a0099473a95402f3175280 Mon Sep 17 00:00:00 2001 From: B Stack Date: Tue, 15 Jan 2019 08:16:08 -0500 Subject: 10.8 --- zen/legacy_compiler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'zen/legacy_compiler.h') 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 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_; } -- cgit