diff options
author | Sadie Powell <sadie@witchery.services> | 2022-09-12 20:33:21 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2022-12-09 16:50:29 +0000 |
commit | 5fa3d8f9297f50e25a7bad6a9bde91b9024330de (patch) | |
tree | 26cd885ac78b345361471fa55a7d0801449ede3e /modules/m_httpd.cpp | |
parent | 1a2da821064f8d869b999fb8e32ffeddfc82967b (diff) |
Use emplace() instead of insert(std::make_pair()).
Diffstat (limited to 'modules/m_httpd.cpp')
-rw-r--r-- | modules/m_httpd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/m_httpd.cpp b/modules/m_httpd.cpp index 63bfe7fd4..4ce4ba945 100644 --- a/modules/m_httpd.cpp +++ b/modules/m_httpd.cpp @@ -318,7 +318,7 @@ class MyHTTPProvider : public HTTPProvider, public Timer bool RegisterPage(HTTPPage *page) override { - return this->pages.insert(std::make_pair(page->GetURL(), page)).second; + return this->pages.emplace(page->GetURL(), page).second; } void UnregisterPage(HTTPPage *page) override |