From 49ebbec37f55979256ef9b79acac35486b3b33f8 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Sun, 1 Apr 2018 14:47:33 +1000 Subject: [PATCH] string: don't use const members for tokeniser::iterator this allows us to provide an assignment operator more easily --- string.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/string.hpp b/string.hpp index f3be17f6..f113d2cf 100644 --- a/string.hpp +++ b/string.hpp @@ -116,7 +116,7 @@ namespace util { m_end (_range.cend ()) { ; } - const value_type m_separator; + value_type m_separator; range_type m_range; Iterator m_end;