whitespaces

This commit is contained in:
silverqx
2023-07-12 14:07:38 +02:00
parent 0a045f3582
commit afaf59a874
+2 -2
View File
@@ -2219,13 +2219,13 @@ namespace Orm::Tiny::Concerns
// Cache the get mutator (accessor) value
if (attribute.withCaching()) T_UNLIKELY
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
m_attributeMutatorsCache.emplace(key, value);
m_attributeMutatorsCache.emplace(key, value);
#else
m_attributeCastCache.insert(key, value);
#endif
// Remove the get mutator (accessor) from the cache if caching is disabled
else T_LIKELY
m_attributeMutatorsCache.remove(key);
m_attributeMutatorsCache.remove(key);
return value;
}