gcc/clang compile fix

This commit is contained in:
aleks-f 2013-01-04 19:49:28 -06:00
parent f0cefd2976
commit 959e5725a3

View File

@ -61,7 +61,7 @@ namespace Poco {
namespace Net {
template <class ServiceHandler, class SR>
template <class ServiceHandler, typename SR>
class ParallelSocketAcceptor
/// This class implements the Acceptor part of the Acceptor-Connector design pattern.
/// Only the difference from single-threaded version is documented here, For full
@ -75,7 +75,7 @@ class ParallelSocketAcceptor
/// details.
{
public:
typedef typename ParallelSocketReactor<SR> ParallelReactor;
typedef typename Poco::Net::ParallelSocketReactor<SR> ParallelReactor;
explicit ParallelSocketAcceptor(ServerSocket& socket,
unsigned threads = Poco::Environment::processorCount()):