diff options
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/rtlil.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h index d6acb5bcc..7bd75bd1d 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -278,6 +278,9 @@ namespace RTLIL result.push_back(it.second); return result; } + + std::set<T> to_set() const { return *this; } + std::vector<T> to_vector() const { return *this; } }; }; |