L
lallous
Hello,
enum eErrors
{
eSuccess = 0,
eErr1 = 1,
eErr2 = 2,
eErr3 = 3,
};
Notice the last comma. Is this allowed by the standard or the compiler?
Or even using: int ar[] = {1,2,3,};
p.s: VC++ 6
enum eErrors
{
eSuccess = 0,
eErr1 = 1,
eErr2 = 2,
eErr3 = 3,
};
Notice the last comma. Is this allowed by the standard or the compiler?
Or even using: int ar[] = {1,2,3,};
p.s: VC++ 6