vvp: Remove bitsr from struct vvp_fun_part_state_s

The part functor has no real typed state and the bitsr field of the state
struct is unused. Remove it.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
This commit is contained in:
Lars-Peter Clausen 2023-12-24 09:09:20 -08:00
parent 7b99cd25ca
commit 9853a5904c
1 changed files with 1 additions and 2 deletions

View File

@ -29,10 +29,9 @@
using namespace std;
struct vvp_fun_part_state_s {
vvp_fun_part_state_s() : bitsr(0.0) {}
vvp_fun_part_state_s() {}
vvp_vector4_t bits;
double bitsr;
};
vvp_fun_part::vvp_fun_part(unsigned base, unsigned wid)