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
You might be using enum EnumName {option1,option2}. With C++ 11, enum is being destined to be used as class for security reasons.
Try using enum class EnumName {option1,option2}
The enum type 'boost::system::errc::errc_t' is unscoped. Prefer 'enum class' over 'enum' (Enum.3).
Can the error code be converrted to enum class?
The text was updated successfully, but these errors were encountered: