COMP: remove construct SortableList from two iterators (#2083)

- unused, but missed in 40567b844a
This commit is contained in:
Mark Olesen 2021-07-05 13:11:12 +02:00
parent 8884d58a52
commit 00990698ad
2 changed files with 0 additions and 19 deletions

View File

@ -93,20 +93,6 @@ inline Foam::SortableList<T>::SortableList(List<T>&& values)
}
template<class T>
template<class InputIterator>
inline Foam::SortableList<T>::SortableList
(
InputIterator begIter,
InputIterator endIter
)
:
List<T>(begIter, endIter)
{
sort();
}
template<class T>
inline Foam::SortableList<T>::SortableList(std::initializer_list<T> values)
:

View File

@ -99,11 +99,6 @@ public:
//- Move construct from List, sorting immediately
inline SortableList(List<T>&& values);
//- Construct given begin/end iterators.
// Uses std::distance to determine the size.
template<class InputIterator>
inline SortableList(InputIterator begIter, InputIterator endIter);
//- Construct from an initializer list, sorting immediately
inline SortableList(std::initializer_list<T> values);