more shared_ptr compat

This commit is contained in:
Michael Davidsaver
2017-07-18 15:10:32 +02:00
parent 36be4d3bf7
commit b2ef7cd0ec

View File

@@ -1267,7 +1267,7 @@ struct SimpleChannelProviderFactory : public ChannelProviderFactory
virtual ChannelProvider::shared_pointer newInstance(const std::tr1::shared_ptr<Configuration>& conf) OVERRIDE FINAL
{
ChannelProvider::shared_pointer ret(new Provider(conf));
std::tr1::shared_ptr<Provider> ret(new Provider(conf));
return ret;
}