Fix shared_ptr usage
The std::shared_ptr type was used instead of std::tr1::shared_ptr. A NULL pointer was also implicitly cast into a Backend pointer which caused compilation problems on some platforms with the tr1 version of shared_ptr.
This commit is contained in:
@ -35,7 +35,7 @@
|
||||
using std::list;
|
||||
using std::set;
|
||||
using std::string;
|
||||
using std::shared_ptr;
|
||||
using std::tr1::shared_ptr;
|
||||
|
||||
using maxscale::Buffer;
|
||||
|
||||
|
Reference in New Issue
Block a user