From 23d12fcb1f629036e2a62278ae2d709275dc70f9 Mon Sep 17 00:00:00 2001 From: Michael Chirico Date: Mon, 1 Jun 2026 10:02:51 -0700 Subject: [PATCH] Remove unused 'r_braces' --- src/isComplete.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/isComplete.cpp b/src/isComplete.cpp index a67d91b5..e058b0fa 100644 --- a/src/isComplete.cpp +++ b/src/isComplete.cpp @@ -85,7 +85,7 @@ int roxygen_parse_tag(std::string string, bool is_code = false, int mode = 0, in State state = State::Rd; char string_delim = '\0'; - int braces = 0, r_braces = 0; + int braces = 0; for (int i = start; i < n; i++) { char cur = string[i];