From 8f80049b3b5ffe0428f6679fce89df942b9d1341 Mon Sep 17 00:00:00 2001 From: Jacyking <791026912@qq.com> Date: Thu, 9 May 2024 00:08:40 +0800 Subject: [PATCH] add section field update --- ormpp/utility.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ormpp/utility.hpp b/ormpp/utility.hpp index edc15421..33e8842d 100644 --- a/ormpp/utility.hpp +++ b/ormpp/utility.hpp @@ -405,9 +405,8 @@ inline std::string generate_update_sql(Args &&...args) { inline bool is_empty(const std::string &t) { return t.empty(); } template -constexpr bool is_char_array_v = - std::is_array_v && - std::is_same_v>>; +constexpr bool is_char_array_v = std::is_array_v + &&std::is_same_v>>; template inline constexpr size_t char_array_size(char (&)[N]) {