From 285933f8ca633495e7e4d03481a58ead3323c504 Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Thu, 7 Jun 2018 15:26:02 +0200 Subject: Remove the `_Alignas(expr)` construct (#125) The `_Alignas(expr)` construct is not C11, only `_Alignas(type)` is. --- cparser/pre_parser.mly | 1 - 1 file changed, 1 deletion(-) (limited to 'cparser/pre_parser.mly') diff --git a/cparser/pre_parser.mly b/cparser/pre_parser.mly index 04fbcb94..71eaf419 100644 --- a/cparser/pre_parser.mly +++ b/cparser/pre_parser.mly @@ -275,7 +275,6 @@ unary_expression: | unary_operator cast_expression | SIZEOF unary_expression | SIZEOF LPAREN type_name RPAREN -| ALIGNOF unary_expression | ALIGNOF LPAREN type_name RPAREN {} -- cgit