From 1987614bfe0ef0a1da60b9da521af7367130eb82 Mon Sep 17 00:00:00 2001 From: Frank Park Date: Tue, 11 Apr 2017 13:48:30 -0400 Subject: [PATCH] make pool::connection inherit from sqlpp::connection --- include/sqlpp11/pool_connection.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/sqlpp11/pool_connection.h b/include/sqlpp11/pool_connection.h index 5ef7632e..b05bfe52 100644 --- a/include/sqlpp11/pool_connection.h +++ b/include/sqlpp11/pool_connection.h @@ -27,13 +27,14 @@ #ifndef SQLPP_POOL_CONNECTION_H #define SQLPP_POOL_CONNECTION_H +#include #include namespace sqlpp { template > - struct pool_connection + struct pool_connection : public sqlpp::connection { private: std::unique_ptr _impl;