Skip to content

Commit

Permalink
fix session.cpp compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackarain committed Sep 28, 2019
1 parent e314fd5 commit 8e80434
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions third_party/soci/src/core/session.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ session::session(std::string const & connectString)
session::session(void* pg_native_handle)
: once(this), prepare(this), query_transformation_(NULL),
logger_(new standard_logger_impl),
isFromPool_(false), pool_(NULL),
useNativeHandle_(true)
useNativeHandle_(false),
isFromPool_(false), pool_(NULL)
{
open(pg_native_handle);
}
Expand Down

0 comments on commit 8e80434

Please sign in to comment.