summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/magic-enum
Commit message (Collapse)AuthorAgeFilesLines
* magic-enum: Upgrade 0.9.6 -> 0.9.7Ricardo Simoes2024-11-191-1/+1
| | | | | | | | Changelog: https://github.com/Neargye/magic_enum/releases/tag/v0.9.7 Signed-off-by: Ricardo Simoes <ricardo.simoes@pt.bosch.com> Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* magic-enum: Upgrade v0.9.5 -> v0.9.6Ricardo Simoes2024-08-281-5/+2
| | | | | | | | | | | | | | In version 0.9.6 issue #362 was fixed. Thus, the tweak in the compile flags is no longer needed. The checksum of the LICENSE file changed because the copyright range was updated. Changelog: https://github.com/Neargye/magic_enum/releases/tag/v0.9.6 Signed-off-by: Ricardo Simoes <ricardo.simoes@pt.bosch.com> Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* magic-enum: Disable unused-value warning in testsRicardo Simoes2024-06-281-0/+3
| | | | | | | | | | | | | | | | | | | | | With gcc 14.1.0, there is one compilation warning found in the unit tests which cause ptest builds to fail: test_containers.cpp:290:89: error: value computed is not used [-Werror=unused-value] 290 | magic_enum::containers::set color_set_not_const {Color::RED, Color::GREEN, Color::BLUE}; | This is the same behavior as described in [1]. Thus, we can safely treat this specific warning not as an error until the gcc bug is fixed. [1] https://gcc.gnu.org/bugzilla/show_bug.cgi?format=multiple&id=114970 Signed-off-by: Ricardo Simoes <ricardo.simoes@pt.bosch.com> Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com> Reported-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* magic-enum: add recipeRicardo Simoes2024-06-192-0/+71
magic-enum is a header-only C++17 library provides static reflection for enums, works with any enum type without any macro or boilerplate code. Signed-off-by: Ricardo Simoes <ricardo.simoes@pt.bosch.com> Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>