diff --git a/CHANGES.html b/CHANGES.html index ab80d15b8..cec78f518 100644 --- a/CHANGES.html +++ b/CHANGES.html @@ -71,6 +71,14 @@ See the documentation for details.
The int64x64_t type implements all the C++ arithmetic operators to behave like one of the +C++ native types. It is a 64.64 integer type which means that it is a 128bit integer type with +64 bits of fractional precision. The existing Time type is now automatically convertible to +int64x64_t to allow arbitrarily complex arithmetic operations on the content of Time +objects. The implementation of int64x64_t is based on the previously-existing +HighPrecision type and supercedes it. +
The Scalar type has been removed. Typical code such as: +
+Time tmp = ...; +Time result = tmp * Scalar (5); ++Can now be rewritten as: +
+Time tmp = ...; +Time result = Time (tmp * 5); ++ +