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
In most of my coding works, usually the most cases in which the enum is defined inside a class so that the enum is more specific.
for example, there is a demo:
class Clothes
{
public:
enum class Color
{
Red,
Black,
White,
}
};
So, can this request will be supported in the future?
The text was updated successfully, but these errors were encountered:
In most of my coding works, usually the most cases in which the enum is defined inside a class so that the enum is more specific.
for example, there is a demo:
class Clothes
{
public:
enum class Color
{
Red,
Black,
White,
}
};
So, can this request will be supported in the future?
The text was updated successfully, but these errors were encountered: