diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-12-16 15:44:57 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-01-05 15:45:36 +0100 |
commit | edc720479d0749a000d5a6970da6d2d72657cf38 (patch) | |
tree | 7651a205bbb676828ec16eb11050aeb9a4cd7a44 /src/arith_uint256.cpp | |
parent | dba2e9141a4f07154829bdaed35adaf7af7908d3 (diff) |
Remove arith_uint160
We never do 160-bit arithmetic.
Diffstat (limited to 'src/arith_uint256.cpp')
-rw-r--r-- | src/arith_uint256.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/arith_uint256.cpp b/src/arith_uint256.cpp index f0b6a6a3bd..12f9e7d1b1 100644 --- a/src/arith_uint256.cpp +++ b/src/arith_uint256.cpp @@ -216,23 +216,6 @@ unsigned int base_uint<BITS>::bits() const return 0; } -// Explicit instantiations for base_uint<160> -template base_uint<160>::base_uint(const std::string&); -template base_uint<160>::base_uint(const std::vector<unsigned char>&); -template base_uint<160>& base_uint<160>::operator<<=(unsigned int); -template base_uint<160>& base_uint<160>::operator>>=(unsigned int); -template base_uint<160>& base_uint<160>::operator*=(uint32_t b32); -template base_uint<160>& base_uint<160>::operator*=(const base_uint<160>& b); -template base_uint<160>& base_uint<160>::operator/=(const base_uint<160>& b); -template int base_uint<160>::CompareTo(const base_uint<160>&) const; -template bool base_uint<160>::EqualTo(uint64_t) const; -template double base_uint<160>::getdouble() const; -template std::string base_uint<160>::GetHex() const; -template std::string base_uint<160>::ToString() const; -template void base_uint<160>::SetHex(const char*); -template void base_uint<160>::SetHex(const std::string&); -template unsigned int base_uint<160>::bits() const; - // Explicit instantiations for base_uint<256> template base_uint<256>::base_uint(const std::string&); template base_uint<256>::base_uint(const std::vector<unsigned char>&); |