netqueue_t: Remove redundant get_signed() method

The get_signed() method for the netqueue_t class is identical to that of
its base class netdarray_t.

Remove the redundant re-implementation of the method.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
This commit is contained in:
Lars-Peter Clausen 2022-01-01 17:42:15 +01:00
parent e67a796a77
commit 278e071b35
1 changed files with 0 additions and 3 deletions

View File

@ -38,9 +38,6 @@ class netqueue_t : public netdarray_t {
// IVL_VT_QUEUE for queues. // IVL_VT_QUEUE for queues.
ivl_variable_type_t base_type() const; ivl_variable_type_t base_type() const;
// A queue may have a type that is signed.
inline bool get_signed() const { return element_type()->get_signed(); }
// Use the packed width to pass the element width // Use the packed width to pass the element width
long packed_width(void) const { return element_type()->packed_width(); } long packed_width(void) const { return element_type()->packed_width(); }