summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2017-03-28 23:39:18 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-03-28 23:39:18 +0200
commit08684477148fe0320f1fff391c39b1c7c7120027 (patch)
treea1324b45a48f2477e7ea11f585d899e2767801ba
parentMerge "Log temperature during OTA update" am: bc2c51a97f am: 1d7e500bfc (diff)
parentMerge "Suppress the unused variable warning in parser.yy" am: b9b03a282b (diff)
downloadandroid_bootable_recovery-08684477148fe0320f1fff391c39b1c7c7120027.tar
android_bootable_recovery-08684477148fe0320f1fff391c39b1c7c7120027.tar.gz
android_bootable_recovery-08684477148fe0320f1fff391c39b1c7c7120027.tar.bz2
android_bootable_recovery-08684477148fe0320f1fff391c39b1c7c7120027.tar.lz
android_bootable_recovery-08684477148fe0320f1fff391c39b1c7c7120027.tar.xz
android_bootable_recovery-08684477148fe0320f1fff391c39b1c7c7120027.tar.zst
android_bootable_recovery-08684477148fe0320f1fff391c39b1c7c7120027.zip
-rw-r--r--edify/parser.yy3
1 files changed, 3 insertions, 0 deletions
diff --git a/edify/parser.yy b/edify/parser.yy
index 97205fe3b..b1685eb1f 100644
--- a/edify/parser.yy
+++ b/edify/parser.yy
@@ -23,6 +23,8 @@
#include <string>
#include <vector>
+#include <android-base/macros.h>
+
#include "expr.h"
#include "yydefs.h"
#include "parser.h"
@@ -121,6 +123,7 @@ arglist: /* empty */ {
$$->emplace_back($1);
}
| arglist ',' expr {
+ UNUSED($1);
$$->push_back(std::unique_ptr<Expr>($3));
}
;