diff options
Diffstat (limited to 'cpp/src/Slice/CPlusPlusUtil.cpp')
-rw-r--r-- | cpp/src/Slice/CPlusPlusUtil.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/cpp/src/Slice/CPlusPlusUtil.cpp b/cpp/src/Slice/CPlusPlusUtil.cpp index 08ab56a67cf..6baf74213b9 100644 --- a/cpp/src/Slice/CPlusPlusUtil.cpp +++ b/cpp/src/Slice/CPlusPlusUtil.cpp @@ -493,10 +493,9 @@ lookupKwd(const string& name) // Keyword list. *Must* be kept in alphabetical order. // // Note that this keyword list unnecessarily contains C++ keywords - // that are illegal slice identifiers -- namely identifiers that - // contain underscores (and_eq, for example), and slice keywords - // (class, int, etc.). They have not been removed so that the - // keyword list is kept complete. + // that are illegal Slice identifiers -- namely identifiers that + // are Slice keywords (class, int, etc.). They have not been removed + // so that the keyword list is kept complete. // static const string keywordList[] = { |