0
0
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:
Volker Aßmann 2017-06-01 23:26:07 +02:00
parent b51714eb48
commit ee20a8be67

View File

@ -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
{