Silence -Wunused-but-set-variable error with clang
[babeltrace.git] / src / plugins / ctf / common / metadata / parser.y
index f75e577b42b18559afd01f96b6b917a8c5731ecf..b74497b034189b478cdd7792edd7760080d487f0 100644 (file)
 
 #include "parser-wrap.h"
 
+/*
+ * Avoid warning about "yynerrs" being unused, seen with bison 3.5.1 + clang 15
+ * on Ubuntu 20.04.
+ */
+BT_DIAG_IGNORE_UNUSED_BUT_SET_VARIABLE
+
 /* Join two lists, put "add" at the end of "head".  */
 static inline void
 _bt_list_splice_tail (struct bt_list_head *add, struct bt_list_head *head)
This page took 0.022874 seconds and 4 git commands to generate.