1
0
Fork 0
mirror of https://github.com/Neargye/magic_enum.git synced 2026-01-08 23:24:20 +00:00

doc: Fixes typo in README (#406)

This commit is contained in:
Kyle Williams 2025-06-11 11:38:33 -05:00 committed by GitHub
parent a413fcc9c4
commit c726051c5c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,7 +28,7 @@ If you like this project, please consider donating to one of the funds that help
#include <magic_enum/magic_enum.hpp>
#include <iostream>
enum class Color : { RED = -10, BLUE = 0, GREEN = 10 };
enum class Color { RED = -10, BLUE = 0, GREEN = 10 };
int main() {
Color c1 = Color::RED;