vvp: Remove unused `vvp_fun_signal_{real,string}::size()`
Both the `vvp_fun_signal_real` and `vvp_fun_signal_string` classes implement a `size()` method that returns 1. There are no users of these methods, remove them. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
This commit is contained in:
parent
1603df47d0
commit
608c18699e
|
|
@ -199,8 +199,6 @@ class vvp_fun_signal_real : public vvp_fun_signal_base {
|
|||
|
||||
// Get information about the vector value.
|
||||
virtual double real_unfiltered_value() const = 0;
|
||||
|
||||
unsigned size() const { return 1; }
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
@ -264,8 +262,6 @@ class vvp_fun_signal_string : public vvp_fun_signal_base {
|
|||
public:
|
||||
explicit vvp_fun_signal_string() {};
|
||||
|
||||
unsigned size() const { return 1; }
|
||||
|
||||
virtual const std::string& get_string() const =0;
|
||||
|
||||
protected:
|
||||
|
|
|
|||
Loading…
Reference in New Issue