From 3bdbdf1ba947d492a0ed05cee69606a26f7dc0f1 Mon Sep 17 00:00:00 2001 From: Maxim Pimenov Date: Mon, 17 Feb 2020 14:10:58 +0300 Subject: [PATCH] [base] Explicit namespace std for a couple of calls. --- base/stl_helpers.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/base/stl_helpers.hpp b/base/stl_helpers.hpp index e2c1cd5cad..bbc3afd044 100644 --- a/base/stl_helpers.hpp +++ b/base/stl_helpers.hpp @@ -110,8 +110,8 @@ private: template void SortUnique(Cont & c) { - sort(c.begin(), c.end()); - c.erase(unique(c.begin(), c.end()), c.end()); + std::sort(c.begin(), c.end()); + c.erase(std::unique(c.begin(), c.end()), c.end()); } // Sorts according to |less| and removes duplicate entries according to |equals| from |c|. @@ -120,14 +120,14 @@ void SortUnique(Cont & c) template void SortUnique(Cont & c, Less && less, Equals && equals) { - sort(c.begin(), c.end(), std::forward(less)); - c.erase(unique(c.begin(), c.end(), std::forward(equals)), c.end()); + std::sort(c.begin(), c.end(), std::forward(less)); + c.erase(std::unique(c.begin(), c.end(), std::forward(equals)), c.end()); } template void EraseIf(Cont & c, Fn && fn) { - c.erase(remove_if(c.begin(), c.end(), std::forward(fn)), c.end()); + c.erase(std::remove_if(c.begin(), c.end(), std::forward(fn)), c.end()); } template