From 994451186c86d60358fb379e1b0b7c19bb587303 Mon Sep 17 00:00:00 2001 From: Anil Tuncel Date: Wed, 18 Oct 2023 16:19:40 +0200 Subject: [PATCH] remove unused using std::greater_equal statements --- efel/cppcore/LibV1.cpp | 3 --- efel/cppcore/LibV2.cpp | 1 - efel/cppcore/LibV3.cpp | 2 -- 3 files changed, 6 deletions(-) diff --git a/efel/cppcore/LibV1.cpp b/efel/cppcore/LibV1.cpp index e410b1a0..ff324861 100644 --- a/efel/cppcore/LibV1.cpp +++ b/efel/cppcore/LibV1.cpp @@ -30,9 +30,6 @@ #include using std::find_if; -using std::greater; -using std::greater_equal; -using std::less_equal; using std::list; using std::min_element; using std::max_element; diff --git a/efel/cppcore/LibV2.cpp b/efel/cppcore/LibV2.cpp index 562fbbf0..a1895584 100644 --- a/efel/cppcore/LibV2.cpp +++ b/efel/cppcore/LibV2.cpp @@ -25,7 +25,6 @@ #include using std::find_if; -using std::greater_equal; using std::min_element; using std::max_element; using std::transform; diff --git a/efel/cppcore/LibV3.cpp b/efel/cppcore/LibV3.cpp index 800f886a..3f878934 100644 --- a/efel/cppcore/LibV3.cpp +++ b/efel/cppcore/LibV3.cpp @@ -24,8 +24,6 @@ #include using std::find_if; -using std::greater_equal; -using std::less_equal; using std::list; using std::min_element;