Fixed warning in Poco [#CLICKHOUSE-2].

This commit is contained in:
Alexey Milovidov 2017-09-11 08:33:36 +03:00
parent 02a0317db6
commit 104c6d9ddf

View File

@ -79,7 +79,7 @@ inline std::string Element::name() const
class ElementComparator
{
public:
bool operator()(const Element::Ptr& s1, const Element::Ptr& s2)
bool operator()(const Element::Ptr& s1, const Element::Ptr& s2) const
{
return s1->name() < s2->name();
}