mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-16 04:47:18 +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
|
#define SQLPP_TRANSACTION_H
|
||||||
|
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
|
#include <ciso646>
|
||||||
|
|
||||||
namespace sqlpp
|
namespace sqlpp
|
||||||
{
|
{
|
||||||
@ -69,7 +70,7 @@ namespace sqlpp
|
|||||||
|
|
||||||
~transaction_t()
|
~transaction_t()
|
||||||
{
|
{
|
||||||
if (!_finished)
|
if (not _finished)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user