From 91ea4d81ada0b5f9c9aeaf3e32e42a5f3dd119fb Mon Sep 17 00:00:00 2001 From: Thomas Fussell Date: Fri, 25 Nov 2016 13:47:49 +0000 Subject: [PATCH] specify initializer list type (why is this needed?) --- source/detail/xlsx_consumer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/detail/xlsx_consumer.cpp b/source/detail/xlsx_consumer.cpp index 9694f06d..3ba8f584 100644 --- a/source/detail/xlsx_consumer.cpp +++ b/source/detail/xlsx_consumer.cpp @@ -1470,7 +1470,7 @@ void xlsx_consumer::read_stylesheet() } else if (current_style_element == xml::qname(xmlns, "tableStyles")) { - skip_attributes({"defaultTableStyle", "defaultPivotStyle"}); + skip_attributes(std::vector{"defaultTableStyle", "defaultPivotStyle"}); auto count = parser().attribute("count"); std::size_t processed = 0;