From bd916897bbea62a1979479220fc1a4f54e020b53 Mon Sep 17 00:00:00 2001 From: Kevin Brubeck Unhammer Date: Tue, 5 Mar 2019 19:39:55 +0100 Subject: [PATCH] python/swig: ToggleIds values are a pair now --- python/libdivvun.i | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/libdivvun.i b/python/libdivvun.i index 56472ca..33a03fb 100644 --- a/python/libdivvun.i +++ b/python/libdivvun.i @@ -110,8 +110,8 @@ wrap_unique_ptr(CheckerUniquePtr, divvun::Checker); %} %template(ErrBytesVector) std::vector; -%template(ToggleIdsBytes) std::map; -%template(ToggleResBytes) std::vector >; +%template(ToggleIdsBytes) std::map >; +%template(ToggleResBytes) std::vector > >; %template(OptionSetBytes) std::set; %template(LocalisedPrefsBytes) std::map;