From 4c66585e14114d0e5e367b4257813a6becda62db Mon Sep 17 00:00:00 2001 From: Felix Schindler <felix.schindler@wwu.de> Date: Sat, 1 Apr 2017 09:43:35 +0200 Subject: [PATCH] [fvector] fix representation in bindings --- dune/xt/common/fvector.pbh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/xt/common/fvector.pbh b/dune/xt/common/fvector.pbh index 1168eb1f2..d3f9d2b0b 100644 --- a/dune/xt/common/fvector.pbh +++ b/dune/xt/common/fvector.pbh @@ -60,7 +60,7 @@ struct FieldVector_type_caster return l.release(); } // ... cast(...) - PYBIND11_TYPE_CASTER(type, _("List[") + value_conv::name() + _("[") + _<SZ>() + _("]")); + PYBIND11_TYPE_CASTER(type, _("List[") + value_conv::name() + _("[") + _<SZ>() + _("]]")); }; // struct FieldVector_type_caster -- GitLab