Skip to content

Commit

Permalink
suppressed clang tidy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
silverqx committed Aug 30, 2022
1 parent 8df914c commit 5fe991e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/orm/tiny/concerns/hasattributes.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -627,9 +627,9 @@ namespace Orm::Tiny::Concerns

return QVariant(QMetaType(QMetaType::QDateTime));
#else
return QVariant(QVariant::LongLong);
return QVariant(QVariant::LongLong); // NOLINT(modernize-return-braced-init-list)

return QVariant(QVariant::DateTime);
return QVariant(QVariant::DateTime); // NOLINT(modernize-return-braced-init-list)
#endif
}

Expand Down

0 comments on commit 5fe991e

Please sign in to comment.