mysql_connection.hには#include <boost/shared_ptr.hpp>
が含まれます 、最新バージョンのブーストを使用するか、以下の行を変更することができますmysql_connection.h
代わりにstd::shared_ptrを使用するには:
更新
#include <boost/shared_ptr.hpp>
boost::shared_ptr< NativeAPI::NativeConnectionWrapper > proxy;
に
#include <memory>
std::shared_ptr< NativeAPI::NativeConnectionWrapper > proxy;