aboutsummaryrefslogtreecommitdiffstats
path: root/common/pybindings.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-06-11 19:56:33 +0200
committerClifford Wolf <clifford@clifford.at>2018-06-11 19:56:33 +0200
commitac6748238015cca1a107d99bf0f175c45eda7b2f (patch)
tree4bd5042c874eb6b32431a47c00f8a9cdcc0ce6cb /common/pybindings.cc
parentf63eec034f6ed133713600a426daaa8845d58c03 (diff)
downloadnextpnr-ac6748238015cca1a107d99bf0f175c45eda7b2f.tar.gz
nextpnr-ac6748238015cca1a107d99bf0f175c45eda7b2f.tar.bz2
nextpnr-ac6748238015cca1a107d99bf0f175c45eda7b2f.zip
Remove pool, dict, vector namespace aliases
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'common/pybindings.cc')
-rw-r--r--common/pybindings.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/pybindings.cc b/common/pybindings.cc
index 24269b55..82f35421 100644
--- a/common/pybindings.cc
+++ b/common/pybindings.cc
@@ -88,8 +88,8 @@ BOOST_PYTHON_MODULE(MODULE_NAME)
WRAP_MAP(decltype(NetInfo::attrs), "IdStrMap");
- class_<vector<PortRef>>("PortRefVector")
- .def(vector_indexing_suite<vector<PortRef>>());
+ class_<std::vector<PortRef>>("PortRefVector")
+ .def(vector_indexing_suite<std::vector<PortRef>>());
enum_<PortType>("PortType")
.value("PORT_IN", PORT_IN)