Skip to content

Commit

Permalink
added missing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
silverqx committed Jul 7, 2023
1 parent d84b23b commit 06e4bef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/orm/tiny/concerns/hasrelationships.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -363,11 +363,11 @@ namespace Concerns
inline static void serializeRelation(QVariant &relationSerialized, // don't remove inline
const std::optional<Related> &model);

/*! */
/*! Insert the serialized relation attributes to the final attributes map. */
inline static void
insertSerializedRelation(QVariantMap &attributes, const QString &relation,
const QVariant &relationSerialized);
/*! */
/*! Emplace the serialized relation attributes to the final attributes vector. */
inline static void
insertSerializedRelation(QVector<AttributeItem> &attributes, QString &&relation,
QVariant &&relationSerialized);
Expand Down

0 comments on commit 06e4bef

Please sign in to comment.