From ebf92f07ac123a2a841068e151a7797a351dd279 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Mon, 18 Jul 2016 22:07:29 -0400 Subject: [PATCH] drop const in TextLoader line pointer --- src/core/TextLoader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/TextLoader.h b/src/core/TextLoader.h index b0a5405..d6a33c5 100644 --- a/src/core/TextLoader.h +++ b/src/core/TextLoader.h @@ -33,7 +33,7 @@ public: auto begin() { return m_lines->begin(); } auto end() { return m_lines->end(); } - typedef std::pair LineIndexPair; + typedef std::pair LineIndexPair; typedef std::list LineIndexPairList; typedef std::shared_ptr LineIndexPairListRef;