From d172d7b16a53b458e7b1827a1d581b85b6dba457 Mon Sep 17 00:00:00 2001 From: silverqx Date: Mon, 26 Aug 2024 21:31:12 +0200 Subject: [PATCH] orm removed useless inline [skip ci] --- include/orm/tiny/model.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);