Reverted resource/response function parameter types shared_ptr& to shared_ptr. No real value added here, just more complicated code. Compiler might also optimise the now const lambda captures.

This commit is contained in:
eidheim 2017-07-04 12:04:07 +02:00
commit 68f1e8413a
8 changed files with 75 additions and 75 deletions

View file

@ -58,7 +58,7 @@ public:
return nullptr;
}
void connect(std::shared_ptr<Session> &) override {}
void connect(const std::shared_ptr<Session> &) override {}
void constructor_parse_test1() {
assert(host == "test.org");