Skip to content

Commit d172d7b

Browse files
committed
orm removed useless inline
[skip ci]
1 parent 97b4e6c commit d172d7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/orm/tiny/model.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,12 +205,12 @@ namespace Orm::Tiny
205205

206206
/*! Increment a column's value by a given amount. */
207207
template<typename T = std::size_t> requires std::is_arithmetic_v<T>
208-
inline std::tuple<int, TSqlQuery>
208+
std::tuple<int, TSqlQuery>
209209
increment(const QString &column, T amount = 1,
210210
const QList<AttributeItem> &extra = {}, bool all = false);
211211
/*! Decrement a column's value by a given amount. */
212212
template<typename T = std::size_t> requires std::is_arithmetic_v<T>
213-
inline std::tuple<int, TSqlQuery>
213+
std::tuple<int, TSqlQuery>
214214
decrement(const QString &column, T amount = 1,
215215
const QList<AttributeItem> &extra = {}, bool all = false);
216216

0 commit comments

Comments
 (0)