We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97b4e6c commit d172d7bCopy full SHA for d172d7b
include/orm/tiny/model.hpp
@@ -205,12 +205,12 @@ namespace Orm::Tiny
205
206
/*! Increment a column's value by a given amount. */
207
template<typename T = std::size_t> requires std::is_arithmetic_v<T>
208
- inline std::tuple<int, TSqlQuery>
+ std::tuple<int, TSqlQuery>
209
increment(const QString &column, T amount = 1,
210
const QList<AttributeItem> &extra = {}, bool all = false);
211
/*! Decrement a column's value by a given amount. */
212
213
214
decrement(const QString &column, T amount = 1,
215
216
0 commit comments