From 2c81be72eef5363736cf1892646c74a3311ee4c1 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Sun, 22 May 2022 17:03:17 -0400 Subject: add upstream 11.21 --- zenXml/zenxml/cvrt_text.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'zenXml/zenxml/cvrt_text.h') diff --git a/zenXml/zenxml/cvrt_text.h b/zenXml/zenxml/cvrt_text.h index c06a62e0..9c2cbe45 100644 --- a/zenXml/zenxml/cvrt_text.h +++ b/zenXml/zenxml/cvrt_text.h @@ -130,8 +130,8 @@ enum class TextType template struct GetTextType : std::integral_constant ? TextType::boolean : - IsStringLikeV ? TextType::string : //string before number to correctly handle char/wchar_t -> this was an issue with Loki only! - IsArithmeticV ? TextType::number : // + isStringLike ? TextType::string : //string before number to correctly handle char/wchar_t -> this was an issue with Loki only! + isArithmetic ? TextType::number : // IsChronoDuration::value ? TextType::chrono : TextType::other> {}; -- cgit