From d8546c5c17b7eff31518d9d2b3fced1ab9c3d944 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Sun, 1 Dec 2019 20:18:35 +0000 Subject: [PATCH] Fix merge function duplication --- include/etl/stl/alternate/algorithm.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/include/etl/stl/alternate/algorithm.h b/include/etl/stl/alternate/algorithm.h index 38974d14..7b693abc 100644 --- a/include/etl/stl/alternate/algorithm.h +++ b/include/etl/stl/alternate/algorithm.h @@ -206,17 +206,6 @@ namespace etlstd return de; } - //*************************************************************************** - // reverse - template - void reverse(TIterator first, TIterator last) - { - while ((first != last) && (first != --last)) - { - ETLSTD::swap(*first++, *last); - } - } - //*************************************************************************** // move template