mysql_connection.h obsahuje #include <boost/shared_ptr.hpp>
, můžete buď použít nejnovější verze boostu, nebo upravit pod řádky mysql_connection.h
místo toho použijte std::shared_ptr:
aktualizace
#include <boost/shared_ptr.hpp>
boost::shared_ptr< NativeAPI::NativeConnectionWrapper > proxy;
do
#include <memory>
std::shared_ptr< NativeAPI::NativeConnectionWrapper > proxy;