remove ; after Server<HTTP> constructor
This commit is contained in:
parent
dc944ce2fb
commit
739da9c1e6
1 changed files with 1 additions and 1 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue