From 106af9d8ad7f0a23796f5be7ad909225841bcfac Mon Sep 17 00:00:00 2001 From: silverqx Date: Sun, 13 Nov 2022 17:07:15 +0100 Subject: [PATCH] added comment --- include/orm/ormconcepts.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/orm/ormconcepts.hpp b/include/orm/ormconcepts.hpp index 7534f4d34..aac5403a6 100644 --- a/include/orm/ormconcepts.hpp +++ b/include/orm/ormconcepts.hpp @@ -30,6 +30,9 @@ namespace Query } using QueryBuilder = Query::Builder; + /* Don't test for eg. QString and also const QString & in the std::converible_to<>, + test only for the QString, it doesn't make sense to test for both. */ + /*! Concept for a queryable parameter. */ template concept Queryable = std::convertible_to ||