remove ; after Server<HTTP> constructor

This commit is contained in:
Christophe Meessen 2015-06-15 15:36:51 +02:00 committed by eidheim
commit 739da9c1e6

View file

@ -374,7 +374,7 @@ namespace SimpleWeb {
class Server<HTTP> : public ServerBase<HTTP> {
public:
Server(unsigned short port, size_t num_threads=1, size_t timeout_request=5, size_t timeout_content=300) :
ServerBase<HTTP>::ServerBase(port, num_threads, timeout_request, timeout_content) {};
ServerBase<HTTP>::ServerBase(port, num_threads, timeout_request, timeout_content) {}
private:
void accept() {