Daniil Goncharov

Results 123 comments of Daniil Goncharov

`BOTH (/): 0` - https://github.com/Neargye/magic_enum/issues/314#issuecomment-1812285880. `BOTH` is not true flag, it is a "flag or" `NONE (/): 0` - https://github.com/Neargye/magic_enum/issues/321 `NONE|CCW (/): 0` - will check, looks like bug, expected...

@JWCS @ZXShady After checking, yes, "NONE|CCW" parsing to 0 in the current implementation is not a bug. Library doesn't find NONE in the flags list and treats it as an...

Can you please give a full example of an enum declaration?

For now, I would postpone this issue until we resolve this https://github.com/Neargye/magic_enum/issues/434

@ZXShady > It seems alot of people forget to set this boolean to true themselves, shouls it auto deduce? It would be great, but I haven't found a reliable way...

Could try adding auto detection. Then we definitely need swith using namespace magic_enum::bitwise_operators to enable_bitwise_operators = true 😁

Could you please give example "semver::version with already known version"? You mean some think `version(1,0,0,"rc")` ?

I am not familiar with the ROS2 build process and do not maintain it, so my understanding of this issue is limited. Is there any way I can assist with...

I see two potential solutions to address this issue: First approach: Implement an opt-in mechanism by requiring explicit specialization, such as enable_bitwise_operators = true, as suggested above. This would prevent...