You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
boost::mpl is used for the getter_types in src/Get.h and src/detail/Get.h, this should be replaced with a c++11 alternative like brigand, which should (hopefully) improve compile-time speed/memory usage
The text was updated successfully, but these errors were encountered:
actually, don't even know if a whole library like brigand is needed. Only need a search functionality over a type-list, plus some minor meta-programming conditionals for SFINAE, which you can probably do with the standard library
martinjrobins
changed the title
replace boost::mpl with brigand
replace boost::mpl with brigand or custom classes
Oct 13, 2017
boost::mpl
is used for the getter_types insrc/Get.h
andsrc/detail/Get.h
, this should be replaced with a c++11 alternative like brigand, which should (hopefully) improve compile-time speed/memory usageThe text was updated successfully, but these errors were encountered: