You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
159 B
11 lines
159 B
4 months ago
|
// Matching
|
||
|
enum E0 {
|
||
|
E0_Val0 = 'a',
|
||
|
E0_Val1 = (17),
|
||
|
E0_Val2 = (1 << 2),
|
||
|
E0_Val3 = E0_Val2,
|
||
|
E0_Val4 = sizeof(int*),
|
||
|
E0_Val5 = (unsigned int)-1
|
||
|
};
|
||
|
|