...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Front Page / Changelog & History / Changes in Boost 1.32.0 Release / Tag Dispatching Protocol |
The mechanism used to select algorithm implementations based on sequence family has been changed to use metafunction classes:
Before | Now |
---|---|
name_traits |
name_impl |
If your code implemented a custom sequence, it needs to be adjusted according to the above table; for example:
Before | Now |
---|---|
template<> struct begin_traits |
template<> struct begin_impl |