mysql_connection.h bevat #include <boost/shared_ptr.hpp>
, kunt u de nieuwste versies van boost gebruiken of de onderstaande regels mysql_connection.h
wijzigen om in plaats daarvan std::shared_ptr te gebruiken:
bijwerken
#include <boost/shared_ptr.hpp>
boost::shared_ptr< NativeAPI::NativeConnectionWrapper > proxy;
naar
#include <memory>
std::shared_ptr< NativeAPI::NativeConnectionWrapper > proxy;