enum class MyEnum : int
{
MyValue = 0,
};
enum class MyEnum : int;
int main()
{
MyEnum a;
}
When I use the GotoDefinition-Feature, i am shown two suggestions: The definition and the forward declaration.
When I do the same with a class, I directly jump to the definition, as all forward declarations are ignored.
Is it possible to get the same behaviour for Enums?