mirror of
https://github.com/ETLCPP/etl.git
synced 2026-06-29 13:58:44 +08:00
Merge branch 'development'
This commit is contained in:
commit
a997a2ed74
@ -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)
|
||||
{
|
||||
|
||||
@ -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.
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user