| 720 | return ret; |
| 721 | } |
| 722 | bv_variable lib_common_mat_operator_increment(bv_program* prog, bv_object* me, u8 count, bv_variable* args) |
| 723 | { |
| 724 | if (count == 0) |
| 725 | ((sd::Matrix*)me->user_data)->Data++; |
| 726 | |
| 727 | return bv_variable_create_void(); |
| 728 | } |
| 729 | bv_variable lib_common_mat_operator_decrement(bv_program* prog, bv_object* me, u8 count, bv_variable* args) |
| 730 | { |
| 731 | if (count == 0) |
nothing calls this directly
no outgoing calls
no test coverage detected