mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-15 20:31:16 +08:00
Fixed transaction_t move constructor
This commit is contained in:
parent
910973d0a8
commit
6a45d058de
@ -66,7 +66,12 @@ namespace sqlpp
|
|||||||
}
|
}
|
||||||
|
|
||||||
transaction_t(const transaction_t&) = delete;
|
transaction_t(const transaction_t&) = delete;
|
||||||
transaction_t(transaction_t&&) = default;
|
transaction_t(transaction_t&& other)
|
||||||
|
: _db(other._db), _report_unfinished_transaction(other._report_unfinished_transaction), _finished(other._finished)
|
||||||
|
{
|
||||||
|
other._finished = true;
|
||||||
|
}
|
||||||
|
|
||||||
transaction_t& operator=(const transaction_t&) = delete;
|
transaction_t& operator=(const transaction_t&) = delete;
|
||||||
transaction_t& operator=(transaction_t&&) = delete;
|
transaction_t& operator=(transaction_t&&) = delete;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user