mysql_connection.h inkluderer #include <boost/shared_ptr.hpp>
, kan du enten bruge nyeste versioner af boost eller ændre nedenstående linjer mysql_connection.h
at bruge std::shared_ptr i stedet:
opdatering
#include <boost/shared_ptr.hpp>
boost::shared_ptr< NativeAPI::NativeConnectionWrapper > proxy;
til
#include <memory>
std::shared_ptr< NativeAPI::NativeConnectionWrapper > proxy;