diff options
author | Jose <jose@zeroc.com> | 2017-03-23 13:08:16 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-03-23 13:08:16 +0100 |
commit | 7caf8f2ee942dd1f1ac11606695be8a582c459b9 (patch) | |
tree | 03d91af1671a1ab0f76a35f03b37754ba6e0114b /cpp/src/Slice/PHPUtil.cpp | |
parent | Fix (ICE-7689) - Ice_sliceChecksums should not be used with namespace mapping (diff) | |
download | ice-7caf8f2ee942dd1f1ac11606695be8a582c459b9.tar.bz2 ice-7caf8f2ee942dd1f1ac11606695be8a582c459b9.tar.xz ice-7caf8f2ee942dd1f1ac11606695be8a582c459b9.zip |
Missing PHP this keyword
Diffstat (limited to 'cpp/src/Slice/PHPUtil.cpp')
-rw-r--r-- | cpp/src/Slice/PHPUtil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Slice/PHPUtil.cpp b/cpp/src/Slice/PHPUtil.cpp index 7043d5edeb8..90c1ccf2d8e 100644 --- a/cpp/src/Slice/PHPUtil.cpp +++ b/cpp/src/Slice/PHPUtil.cpp @@ -38,7 +38,7 @@ lookupKwd(const string& name) "endfor", "endforeach", "endif", "endswitch", "endwhile", "eval", "exit", "extends", "final", "finally", "for", "foreach", "function", "global", "goto", "if", "implements", "include", "include_once", "instanceof", "insteadof", "interface", "isset", "list", "namespace", "new", "or", "print", "private", "protected", "public", - "require", "require_once", "return", "static", "switch", "throw", "trait", "try", "unset", "use", "var", + "require", "require_once", "return", "static", "switch", "this", "throw", "trait", "try", "unset", "use", "var", "while", "xor", "yield" }; bool found = binary_search(&keywordList[0], |