From fd2dfd698249936b99ba985f8559fb1dcb88cd3c Mon Sep 17 00:00:00 2001 From: github action Date: Tue, 24 Mar 2026 18:33:07 +0000 Subject: [PATCH] Apply 'make format' --- src/flexfix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flexfix b/src/flexfix index 307ddee3d..0a64beb0c 100755 --- a/src/flexfix +++ b/src/flexfix @@ -51,7 +51,7 @@ for line in sys.stdin: # Change int to size_t on LexerInput/LexerOutput when using macOS Tahoe if platform.system() == "Darwin": try: - osv = platform.mac_ver()[0] # Example "26.2" + osv = platform.mac_ver()[0] # Example "26.2" if len(osv) > 2 and osv[2] == "." and int(osv[:2]) >= 26: if "::LexerInput(" in line or "::LexerOutput(" in line: line = re.sub(r'int ', r'size_t ', line)