| 1120 | } |
| 1121 | |
| 1122 | Integer::Integer() |
| 1123 | : reg(2), sign(POSITIVE) |
| 1124 | { |
| 1125 | reg[(unsigned int)0] = reg[(unsigned int)1] = 0; |
| 1126 | } |
| 1127 | |
| 1128 | Integer::Integer(const Integer& t) |
| 1129 | : reg(RoundupSize(t.WordCount())), sign(t.sign) |
nothing calls this directly
no test coverage detected