This commit is contained in:
Matthew Parkinson
2019-04-26 16:32:39 +01:00
committed by Matthew Parkinson
parent 8eb6e36966
commit c471e1a271
4 changed files with 13 additions and 10 deletions

View File

@@ -454,9 +454,9 @@ namespace snmalloc
}
/**
* Implementation of std::min
* Implementation of `std::min`
*
* std::min is algorithm, so pulls in a lot of unneccessary code
* `std::min` is in `<algorithm>`, so pulls in a lot of unneccessary code
* We write our own to reduce the code that potentially needs reviewing.
**/
template<typename T>
@@ -466,9 +466,9 @@ namespace snmalloc
}
/**
* Implementation of std::max
* Implementation of `std::max`
*
* std::max is algorithm, so pulls in a lot of unneccessary code
* `std::max` is in `<algorithm>`, so pulls in a lot of unneccessary code
* We write our own to reduce the code that potentially needs reviewing.
**/
template<typename T>