From 016c95bb4a9ee3d1a84277ca5b5d888ee2a3ffd3 Mon Sep 17 00:00:00 2001 From: sukoi26 Date: Thu, 19 Jul 2018 14:05:28 +0200 Subject: [PATCH] Best fit (#1) * bestFit change remove from skip_attributes list * update bestFit commit error compiling std::vector --- source/detail/serialization/xlsx_consumer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/detail/serialization/xlsx_consumer.cpp b/source/detail/serialization/xlsx_consumer.cpp index e15ef435..336ddaa3 100644 --- a/source/detail/serialization/xlsx_consumer.cpp +++ b/source/detail/serialization/xlsx_consumer.cpp @@ -601,7 +601,7 @@ std::string xlsx_consumer::read_worksheet_begin(const std::string &rel_id) { expect_start_element(qn("spreadsheetml", "col"), xml::content::simple); - skip_attributes({"bestFit", "collapsed", "outlineLevel"}); + skip_attributes(std::vector{"collapsed", "outlineLevel"}); auto min = static_cast(std::stoull(parser().attribute("min"))); auto max = static_cast(std::stoull(parser().attribute("max")));