commit f72cb3aa611919059bbd59928a35ee6cddd407ea parent 7008bd8d61a67eb38da54d07c202bcf940016ecb Author: d.levin256@gmail.com <d.levin256@gmail.com> Date: Tue, 26 Jul 2016 22:15:17 +0300 expression_file_reader: mutable position Diffstat:
M | include/kfr/io/file.hpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/kfr/io/file.hpp b/include/kfr/io/file.hpp @@ -106,7 +106,7 @@ struct expression_file_reader : expression_file_base, input_expression position = index + N; return cast<U>(input); } - size_t position = 0; + mutable size_t position = 0; }; }