mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-15 06:24:01 +00:00
Make RustBuiltin a scoped enum
This prevents name clashes. It already is used as scoped enum.
This commit is contained in:
parent
61028f020c
commit
df6525e770
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ int parse_help_only_cmd_opts(help_only_cmd_opts_t &opts, int *optind, int argc,
|
||||||
const wchar_t **argv, parser_t &parser, io_streams_t &streams);
|
const wchar_t **argv, parser_t &parser, io_streams_t &streams);
|
||||||
|
|
||||||
/// An enum of the builtins implemented in Rust.
|
/// An enum of the builtins implemented in Rust.
|
||||||
enum RustBuiltin : int32_t {
|
enum class RustBuiltin : int32_t {
|
||||||
Abbr,
|
Abbr,
|
||||||
Bg,
|
Bg,
|
||||||
Block,
|
Block,
|
||||||
|
|
Loading…
Reference in a new issue