From d38e6212017077c0629ba2418f9fa894c8ebde96 Mon Sep 17 00:00:00 2001 From: Neil MacIntosh Date: Mon, 4 Jan 2016 11:57:03 -0800 Subject: [PATCH] Correct missing return in string_span.h Should fix #239. --- include/string_span.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/string_span.h b/include/string_span.h index 686ace9..5143e84 100644 --- a/include/string_span.h +++ b/include/string_span.h @@ -435,7 +435,7 @@ public: constexpr const_iterator cend() const noexcept { - span_.cend(); + return span_.cend(); } constexpr reverse_iterator rbegin() const noexcept