Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Kucera2009-01-02 15:59:42 +0000
committerMike Kucera2009-01-02 15:59:42 +0000
commitb6d210918b2fa7d627ff75c29a7e4ee4a4f48f62 (patch)
tree5af61774756845848a9a88c6a02cecccec83d1c5 /lrparser/org.eclipse.cdt.core.lrparser/grammar
parentcfa1a4f42e74dc726e6e91d6cc448804e9a59fa3 (diff)
downloadorg.eclipse.cdt-b6d210918b2fa7d627ff75c29a7e4ee4a4f48f62.tar.gz
org.eclipse.cdt-b6d210918b2fa7d627ff75c29a7e4ee4a4f48f62.tar.xz
org.eclipse.cdt-b6d210918b2fa7d627ff75c29a7e4ee4a4f48f62.zip
fix for bug 86943 for the LR parsers
Diffstat (limited to 'lrparser/org.eclipse.cdt.core.lrparser/grammar')
-rw-r--r--lrparser/org.eclipse.cdt.core.lrparser/grammar/cpp/CPPGrammar.g1
1 files changed, 1 insertions, 0 deletions
diff --git a/lrparser/org.eclipse.cdt.core.lrparser/grammar/cpp/CPPGrammar.g b/lrparser/org.eclipse.cdt.core.lrparser/grammar/cpp/CPPGrammar.g
index 3264a9fcfc4..d78bcb23616 100644
--- a/lrparser/org.eclipse.cdt.core.lrparser/grammar/cpp/CPPGrammar.g
+++ b/lrparser/org.eclipse.cdt.core.lrparser/grammar/cpp/CPPGrammar.g
@@ -1798,6 +1798,7 @@ exception_declaration
exception_specification
::= 'throw' '(' type_id_list ')'
| 'throw' '(' ')'
+ /. $Build consumePlaceHolder(); $EndBuild ./
exception_specification_opt

Back to the top