Correct missing return in string_span.h

Should fix #239.
This commit is contained in:
Neil MacIntosh 2016-01-04 11:57:03 -08:00
parent 95776663dc
commit d38e621201

View File

@ -435,7 +435,7 @@ public:
constexpr const_iterator cend() const noexcept constexpr const_iterator cend() const noexcept
{ {
span_.cend(); return span_.cend();
} }
constexpr reverse_iterator rbegin() const noexcept constexpr reverse_iterator rbegin() const noexcept