summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/rtlil.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h
index d6acb5bc..7bd75bd1 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; }
};
};