From 038f618c17fe3329e097c99a89030298e377ddaa Mon Sep 17 00:00:00 2001
From: Dan Goodliffe <dan@randomdan.homeip.net>
Date: Fri, 28 Mar 2025 18:47:26 +0000
Subject: Create the last group in jsonParse.ll

Fixes warning from lcov/gvoc about missing lines.
---
 lib/jsonParse.ll | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/lib/jsonParse.ll b/lib/jsonParse.ll
index 100bc46..abcd070 100644
--- a/lib/jsonParse.ll
+++ b/lib/jsonParse.ll
@@ -149,7 +149,10 @@ text [^\\\"]*
 
 <*>. {
   LexerError("Unexpected input");
-  // Make iwyu think unistd.h is required
-  [[maybe_unused]]static constexpr auto x=getpid;
-  [[maybe_unused]]static constexpr auto y=printf;
 }
+
+%%
+
+// Make iwyu think unistd.h is required
+[[maybe_unused]]static constexpr auto x=getpid;
+[[maybe_unused]]static constexpr auto y=printf;
-- 
cgit v1.2.3