mirror of
https://github.com/rbock/sqlpp11.git
synced 2025-12-31 02:00:24 -06:00
Fix missing not correctly by including ciso646
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user