From 19bcd372baeab5afa4aefa6d1a3a1770bdd58062 Mon Sep 17 00:00:00 2001 From: silverqx Date: Sun, 30 Jun 2024 12:47:36 +0200 Subject: [PATCH] updated comment about NullVariant class --- src/orm/utils/nullvariant.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/orm/utils/nullvariant.cpp b/src/orm/utils/nullvariant.cpp index 0e35c4bc9..b28ac753d 100644 --- a/src/orm/utils/nullvariant.cpp +++ b/src/orm/utils/nullvariant.cpp @@ -10,7 +10,11 @@ combinations of rvalue or passing by value on the recipient side (eg. to some function). I wanted to refactor this to returning by value because practically all NullVariant - method calls are used as factory methods but I denied it after I tested it. */ + method calls are used as factory methods but I denied it after I tested it. + + Also, the primary reason this class exists was to support the older Qt v5.15, + what means this class isn't needed anymore, but I have decided to leave it because of + the above-described performance boost. 😎 */ TINYORM_BEGIN_COMMON_NAMESPACE