diff options
author | Hossein <hossein@libreoffice.org> | 2022-03-01 14:33:33 +0100 |
---|---|---|
committer | Hossein <hossein@libreoffice.org> | 2022-03-02 02:11:23 +0100 |
commit | d1cfe4228316322d0ae9f3b8020036e5140fc32b (patch) | |
tree | 44432414d1f16c133be7e91b11f67e3be41d3b2e /sax | |
parent | dc99d27f04b47c173de934a19b6d6a3cc572c20a (diff) |
Remove 'const' from for loop variable
In the commit f63a6f2e396fa41ed1338dcec874e06159cafa9f, a for loop is
converted into a range-based for loop. The pointer is used to change
the nodes using xmlUnlinkNode() and xmlFreeNode(), thus the 'const'
should have not been used.
The reinterpret_cast does not change the constness, thus I have
removed the const from the loop variable, and it will no longer be a
const reference.
Change-Id: If4c61017ea77f464230bb5802f6fc928acc7a7e3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130792
Tested-by: Jenkins
Reviewed-by: Hossein <hossein@libreoffice.org>
Diffstat (limited to 'sax')
-rw-r--r-- | sax/source/fastparser/fastparser.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sax/source/fastparser/fastparser.cxx b/sax/source/fastparser/fastparser.cxx index beb30443ba02..71b316378e01 100644 --- a/sax/source/fastparser/fastparser.cxx +++ b/sax/source/fastparser/fastparser.cxx @@ -674,7 +674,7 @@ FastSaxParserImpl::~FastSaxParserImpl() { if( mxDocumentLocator.is() ) mxDocumentLocator->dispose(); - for (const auto& entity : m_TemporalEntities) + for (auto& entity : m_TemporalEntities) { if (!entity) continue; |