Remove RangeType change comment (attempt 2) (#3278)

This commit is contained in:
Ryan Curtin
2022-09-23 02:46:09 +00:00
committed by GitHub
parent c4f1489a3f
commit 3cce4dcc13
-5
View File
@@ -17,16 +17,11 @@ namespace mlpack {
template<typename T>
class RangeType;
//! 3.0.0 TODO: break reverse-compatibility by changing RangeType to Range.
typedef RangeType<double> Range;
/**
* Simple real-valued range. It contains an upper and lower bound.
*
* Note that until mlpack 3.0.0, this class is named RangeType<> and for the
* specification where T is double, you can use Range. As of mlpack 3.0.0, this
* class will be renamed Range<>.
*
* @tparam T type of element held by this range.
*/
template<typename T = double>