From 90960cbef2791bc213d250f5558bdfddd16062a9 Mon Sep 17 00:00:00 2001 From: Violet Date: Fri, 19 Sep 2025 18:48:17 +0000 Subject: [PATCH] cleanup --- ptx_parser/src/lib.rs | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/ptx_parser/src/lib.rs b/ptx_parser/src/lib.rs index c830b6f..2c9003b 100644 --- a/ptx_parser/src/lib.rs +++ b/ptx_parser/src/lib.rs @@ -937,21 +937,6 @@ fn method_parameter<'a, 'input: 'a>( } // TODO: split to a separate type -// fn variable_declaration<'a, 'input>( -// stream: &mut PtxParser<'a, 'input>, -// ) -> PResult<(Option, Option, ScalarType, &'input str)> { -// trace( -// "variable_declaration", -// ( -// opt(align.verify(|x| x.count_ones() == 1)), -// vector_prefix, -// scalar_type, -// ident, -// ), -// ) -// .parse_next(stream) -// } - fn variable_info<'a, 'input>( stream: &mut PtxParser<'a, 'input>, ) -> PResult<(Option, Option, ScalarType)> {