Corrected documentation of Server<HTTPS> constructor
This commit is contained in:
parent
d6b057a673
commit
cc0dc20947
3 changed files with 4 additions and 4 deletions
|
|
@ -152,7 +152,7 @@ namespace SimpleWeb {
|
|||
class Connection : public std::enable_shared_from_this<Connection> {
|
||||
public:
|
||||
template <typename... Args>
|
||||
Connection(std::shared_ptr<ScopeRunner> handler_runner_, Args &&... args) noexcept
|
||||
Connection(std::shared_ptr<ScopeRunner> handler_runner_, Args &&...args) noexcept
|
||||
: handler_runner(std::move(handler_runner_)), socket(new socket_type(std::forward<Args>(args)...)) {}
|
||||
|
||||
std::shared_ptr<ScopeRunner> handler_runner;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue