mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Fix clang warnings
This commit is contained in:
committed by
Vinnie Falco
parent
9bf1a76e91
commit
cd30e552a7
@@ -41,9 +41,8 @@ public:
|
||||
|
||||
void add (std::string const& method, handler_type&& handler)
|
||||
{
|
||||
std::pair <Map::iterator, bool> result (m_map.emplace (
|
||||
std::piecewise_construct, std::forward_as_tuple (method),
|
||||
std::forward_as_tuple (std::move (handler))));
|
||||
m_map.emplace (std::piecewise_construct, std::forward_as_tuple (method),
|
||||
std::forward_as_tuple (std::move (handler)));
|
||||
}
|
||||
|
||||
bool dispatch (Request& req)
|
||||
|
||||
Reference in New Issue
Block a user