mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-15 20:31:16 +08:00
Fix missing not
correctly by including ciso646
This commit is contained in:
parent
b51714eb48
commit
ee20a8be67
@ -28,6 +28,7 @@
|
||||
#define SQLPP_TRANSACTION_H
|
||||
|
||||
#include <stdexcept>
|
||||
#include <ciso646>
|
||||
|
||||
namespace sqlpp
|
||||
{
|
||||
@ -69,7 +70,7 @@ namespace sqlpp
|
||||
|
||||
~transaction_t()
|
||||
{
|
||||
if (!_finished)
|
||||
if (not _finished)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user