aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/parse.h
diff options
authorDaniel Wagner <daniel.wagner@bmw-carit.de>2016-02-17 10:51:31 +0100
committerChristopher Li <sparse@chrisli.org>2017-02-13 09:34:43 +0800
commit2ad59aaa5eaec421e9bbb7163e56ace4d388cfd5 (patch)
treef0456dc254f42be8bbd0606e819b2baaab06b870 /parse.h
parent82c13835624782a6744c3a5dab89c37866c8f7ae (diff)
downloadsparse-dev-2ad59aaa5eaec421e9bbb7163e56ace4d388cfd5.tar.gz
parse: Add comment to struct statement
All the other members of the union got a nice comment what they represent. Let's fix for context as well. Signed-off-by: Daniel Wagner <daniel.wagner@bmw-carit.de> Signed-off-by: Christopher Li <sparse@chrisli.org>
Diffstat (limited to 'parse.h')
-rw-r--r--parse.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.h b/parse.h
index 0c34ec28..195f0fdf 100644
--- a/parse.h
+++ b/parse.h
@@ -51,7 +51,7 @@ struct statement {
struct /* declaration */ {
struct symbol_list *declaration;
};
- struct {
+ struct /* context */ {
struct expression *expression;
struct expression *context;
};