Merge pull request #214 from aadiljaleel/213_fix_enum

fixes syntax bug in enum README.md by changing r2 to Color2
This commit is contained in:
Francis 2022-10-28 15:31:43 +08:00 committed by GitHub
commit 74dddb3bd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ enum class Color2
YELLOW, YELLOW,
BLUE BLUE
}; };
r2 c2 = Color2::RED; Color2 c2 = Color2::RED;
cout << static_cast<int>(c2) << endl; //必须转 cout << static_cast<int>(c2) << endl; //必须转
``` ```

View File

@ -85,7 +85,7 @@ enum class Color2
YELLOW, YELLOW,
BLUE BLUE
}; };
r2 c2 = Color2::RED; Color2 c2 = Color2::RED;
cout << static_cast<int>(c2) << endl; // cout << static_cast<int>(c2) << endl; //
``` ```