diff options
author | Jose <jose@zeroc.com> | 2016-05-11 18:01:21 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-05-11 18:01:21 +0200 |
commit | 1a104123d0210d5c4265f65925648e555a6ac75e (patch) | |
tree | e8e44adf9f1710310433ef5938fd92a6a89a65d7 | |
parent | CSharp mapping cleanup (diff) | |
download | ice-1a104123d0210d5c4265f65925648e555a6ac75e.tar.bz2 ice-1a104123d0210d5c4265f65925648e555a6ac75e.tar.xz ice-1a104123d0210d5c4265f65925648e555a6ac75e.zip |
Fix typo "await" CSharp keyword
-rw-r--r-- | cpp/src/Slice/CsUtil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Slice/CsUtil.cpp b/cpp/src/Slice/CsUtil.cpp index df94e5ab7bc..ba6b89d2348 100644 --- a/cpp/src/Slice/CsUtil.cpp +++ b/cpp/src/Slice/CsUtil.cpp @@ -36,7 +36,7 @@ lookupKwd(const string& name, int baseTypes, bool mangleCasts = false) // static const string keywordList[] = { - "abstract", "as", "async", "away", "base", "bool", "break", "byte", "case", "catch", "char", "checked", "class", "const", + "abstract", "as", "async", "await", "base", "bool", "break", "byte", "case", "catch", "char", "checked", "class", "const", "continue", "decimal", "default", "delegate", "do", "double", "else", "enum", "event", "explicit", "extern", "false", "finally", "fixed", "float", "for", "foreach", "goto", "if", "implicit", "in", "int", "interface", "internal", "is", "lock", "long", "namespace", "new", "null", "object", "operator", "out", "override", |