
21 Mar
2017
21 Mar
'17
6:23 p.m.
AMDG On 03/21/2017 10:31 AM, Роман Орлов via Boost wrote:
<snip> class eats_meat; class eats_grass; class has_tail; Then bind these types to flag identifiers typedef typed_flags
animal;
what's wrong with struct animal { bool eats_meat : 1; bool eats_grass : 1; bool has_tail : 1; }; In Christ, Steven Watanabe