Skip to content

Changed data structure for filter toggles

Raza, Zamaan requested to merge filter_toggles into develop

Booleans to toggle the various filters were set using a std::bitset<13>, which requires some work to wrap via Swig. Moreover, the boolean values were set by index instead of name, which make code maintenance difficult and bug-prone. I have changed this bitset to a struct.

Merge request reports