From 7e0fc8156f7cc770672914818acbf6b71418c398 Mon Sep 17 00:00:00 2001 From: jothepro Date: Mon, 30 Sep 2024 17:07:46 +0200 Subject: [PATCH] test: add explicit enum values to example enum --- include/MyLibrary/example.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/MyLibrary/example.hpp b/include/MyLibrary/example.hpp index 4662d80..0c3366d 100644 --- a/include/MyLibrary/example.hpp +++ b/include/MyLibrary/example.hpp @@ -3,7 +3,7 @@ namespace MyLibrary { -enum Color { red, green, blue }; +enum Color { red = 1, green = 2, blue = 3 }; /** * @brief Example class to demonstrate the features of the custom CSS.