diff --git a/include/orm/tiny/model.hpp b/include/orm/tiny/model.hpp index c7f07aeb8..e7b4a0fbe 100644 --- a/include/orm/tiny/model.hpp +++ b/include/orm/tiny/model.hpp @@ -205,12 +205,12 @@ namespace Orm::Tiny /*! Increment a column's value by a given amount. */ template requires std::is_arithmetic_v - inline std::tuple + std::tuple increment(const QString &column, T amount = 1, const QList &extra = {}, bool all = false); /*! Decrement a column's value by a given amount. */ template requires std::is_arithmetic_v - inline std::tuple + std::tuple decrement(const QString &column, T amount = 1, const QList &extra = {}, bool all = false);