diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2022-07-26 15:48:06 +0100 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2022-07-27 17:52:59 +0200 |
commit | 4093e870c091438dbb9b6bbd7d5095ee3bda5359 (patch) | |
tree | a1442a2de7f9a299efb58ff6f130ca4c79aeb6cb /src | |
parent | ef2ee38f3a1a2e0d169a610b9bd7bf52ea966059 (diff) |
adds 'await' to list of matches in 'rust_mangle'
Diffstat (limited to 'src')
-rw-r--r-- | src/ir/context.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir/context.rs b/src/ir/context.rs index 3bfe549b..36d7eedb 100644 --- a/src/ir/context.rs +++ b/src/ir/context.rs @@ -821,7 +821,7 @@ If you encounter an error missing from this list, please file an issue or a PR!" name.contains('$') || matches!( name, - "abstract" | "alignof" | "as" | "async" | "become" | + "abstract" | "alignof" | "as" | "async" | "await" | "become" | "box" | "break" | "const" | "continue" | "crate" | "do" | "dyn" | "else" | "enum" | "extern" | "false" | "final" | "fn" | "for" | "if" | "impl" | "in" | "let" | "loop" | |