summaryrefslogtreecommitdiff
path: root/zenXml/zenxml/cvrt_text.h
diff options
context:
space:
mode:
Diffstat (limited to 'zenXml/zenxml/cvrt_text.h')
-rw-r--r--zenXml/zenxml/cvrt_text.h4
1 files changed, 2 insertions, 2 deletions
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 <class T>
struct GetTextType : std::integral_constant<TextType,
std::is_same_v<T, bool> ? TextType::boolean :
- IsStringLikeV<T> ? TextType::string : //string before number to correctly handle char/wchar_t -> this was an issue with Loki only!
- IsArithmeticV<T> ? TextType::number : //
+ isStringLike<T> ? TextType::string : //string before number to correctly handle char/wchar_t -> this was an issue with Loki only!
+ isArithmetic<T> ? TextType::number : //
IsChronoDuration<T>::value ? TextType::chrono :
TextType::other> {};
bgstack15