You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 16, 2022. It is now read-only.
A "string to enum" function (inverse of waffle_enum_to_string) would help with writing command line parsing code. For example:
if (argv[1] starts with "WAFFLE_PLATFORM_")
platform = waffle_string_to_enum(argv[1])
else
print usage
This way when waffle grows new platforms, they can be used without having to update any code.
If there are no objections I can write this.
A "string to enum" function (inverse of waffle_enum_to_string) would help with writing command line parsing code. For example:
if (argv[1] starts with "WAFFLE_PLATFORM_")
platform = waffle_string_to_enum(argv[1])
else
print usage
This way when waffle grows new platforms, they can be used without having to update any code.
If there are no objections I can write this.