summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-07-30 22:04:30 +0200
committerClifford Wolf <clifford@clifford.at>2014-07-30 22:04:30 +0200
commit254148910556d057ec296e4f8c44e92bdb8c09a3 (patch)
treefc1ec2ce6e6c0c17bf042e7f0fe44022518600db /kernel
parent7daad40ca408732786d46fee8b5485bf45595807 (diff)
Added techmap CONSTMAP feature
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; }
};
};