some bugfixes for VStudio NOMINMAX-problem ...

This commit is contained in:
jkriege2 2020-06-29 07:59:11 +02:00
parent 7a0d3a71df
commit 2d5e932d1d

View File

@ -1261,7 +1261,7 @@ class JKQTPLOTTER_LIB_EXPORT JKQTPDatastore{
* *
* Pseudocode: * Pseudocode:
* \code * \code
* for (i=0; i<min(rows(otherColumnX), rows(otherColumnY)); i++) { * for (i=0; i<std::min(rows(otherColumnX), rows(otherColumnY)); i++) {
* newColumn.push_back(f(getValue(otherColumnX, i), getValue(otherColumnY, i)); * newColumn.push_back(f(getValue(otherColumnX, i), getValue(otherColumnY, i));
* } * }
* return newColumn; * return newColumn;