| 315 | |
| 316 | |
| 317 | inline |
| 318 | int my_decimal_set_zero(my_decimal *d) |
| 319 | { |
| 320 | /* |
| 321 | We need the up-cast here, since my_decimal has sign() member functions, |
| 322 | which conflicts with decimal_t::size |
| 323 | (and decimal_make_zero is a macro, rather than a funcion). |
| 324 | */ |
| 325 | decimal_make_zero(static_cast<decimal_t*>(d)); |
| 326 | return 0; |
| 327 | } |
| 328 | |
| 329 | |
| 330 | inline |
no outgoing calls
no test coverage detected