diff options
author | lloyd <[email protected]> | 2012-08-01 14:48:45 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-08-01 14:48:45 +0000 |
commit | 3e4ecea6915f4ceb3c0426cf6d179fcc078dd8df (patch) | |
tree | 7ffda5d9c17247b83b8f1f1761cfd4aace1e9e3c /doc | |
parent | 10e7da367713352975c684d18d1377559c71ea24 (diff) |
Remove BigInt(NumberType type, size_t n) and replace it with a static
BigInt function power_of_2. (Power2 was the only available NumberType)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/relnotes/1_11_1.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/relnotes/1_11_1.rst b/doc/relnotes/1_11_1.rst index f0fd0a84e..2ef9a672e 100644 --- a/doc/relnotes/1_11_1.rst +++ b/doc/relnotes/1_11_1.rst @@ -21,3 +21,5 @@ Several :cpp:class:`BigInt` functions have been removed, including that returns a mutable pointer has been renamed ``mutable_data``. Support for octal conversions has been removed. +The constructor ``BigInt(NumberType type, size_t n)`` has been +removed, replaced by ``BigInt::power_of_2``. |