Merge branch 'development'

This commit is contained in:
John Wellbelove 2022-04-09 22:42:56 +02:00
commit a997a2ed74
2 changed files with 8 additions and 0 deletions

View File

@ -1215,6 +1215,7 @@ namespace etl
TCompare compare)
{
TIterator minimum = begin;
++begin;
while (begin != end)
{
@ -1258,6 +1259,7 @@ namespace etl
TCompare compare)
{
TIterator maximum = begin;
++begin;
while (begin != end)
{
@ -1302,6 +1304,7 @@ namespace etl
{
TIterator minimum = begin;
TIterator maximum = begin;
++begin;
while (begin != end)
{

View File

@ -1,4 +1,9 @@
===============================================================================
20.27.2
Added scripts to automatically update version information.
#530 Fixed: etl::nth_type not implemented correctly.
#521 CMake: Add package version file for installation.
===============================================================================
20.27.1
Fixed undefined macros when compiler type is defined by the user.