From 1069c17fbefdaecd17197b97a21d45aa44c321d5 Mon Sep 17 00:00:00 2001 From: JCrawfy Date: Mon, 2 Mar 2020 13:54:33 +1300 Subject: [PATCH] fixup comment in parser --- source/detail/serialization/xlsx_consumer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/detail/serialization/xlsx_consumer.cpp b/source/detail/serialization/xlsx_consumer.cpp index bde76349..ac90586f 100644 --- a/source/detail/serialization/xlsx_consumer.cpp +++ b/source/detail/serialization/xlsx_consumer.cpp @@ -251,7 +251,8 @@ Cell parse_cell(xlnt::row_t row_arg, xml::parser *parser) } int level = 1; // nesting level // 1 == - // 2 == // + // 2 == / + // 3 == // exit loop at while (level > 0) { @@ -272,7 +273,6 @@ Cell parse_cell(xlnt::row_t row_arg, xml::parser *parser) if (level == 2) { // -> numeric values - // -> inline string if (string_equal(parser->name(), "v")) { c.value += std::move(parser->value());