Coding - Rework of Math global functions to stl (#833)

Majority of functions now simply call same functions from std namespace.
Functions that duplicate std namespace functionality are declared
deprecated.
Calls of deprecated functions are replaced with std functions calls.
This commit is contained in:
Dmitrii Kulikov
2025-11-17 14:20:24 +00:00
committed by GitHub
parent 1a246afa2e
commit c479f6e000
1205 changed files with 12672 additions and 11286 deletions
@@ -362,7 +362,7 @@ public:
myLowerBound = theLower;
if (theToCopyData)
{
const size_t aMinSize = std::min<size_t>(aNewSize, mySize);
const size_t aMinSize = (std::min)(aNewSize, mySize);
if (myIsOwner)
{
myPointer = myAllocator.reallocate(myPointer, aNewSize);