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:
Lars-Peter Clausen 2022-06-19 11:55:12 +02:00
parent 1603df47d0
commit 608c18699e
1 changed files with 0 additions and 4 deletions

View File

@ -199,8 +199,6 @@ class vvp_fun_signal_real : public vvp_fun_signal_base {
// Get information about the vector value. // Get information about the vector value.
virtual double real_unfiltered_value() const = 0; 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: public:
explicit vvp_fun_signal_string() {}; explicit vvp_fun_signal_string() {};
unsigned size() const { return 1; }
virtual const std::string& get_string() const =0; virtual const std::string& get_string() const =0;
protected: protected: