* remove comment

This commit is contained in:
Biom4st3r 2025-11-05 16:42:10 -06:00
parent c4b799018a
commit c49a00c79f

View file

@ -672,7 +672,6 @@ const Parser = struct {
const target_name = real_node.enum_literal.get(self.zoir); const target_name = real_node.enum_literal.get(self.zoir);
const T_decls = switch (@typeInfo(T)) { const T_decls = switch (@typeInfo(T)) {
inline .@"struct", .@"union", .@"enum" => |e| e.decls, inline .@"struct", .@"union", .@"enum" => |e| e.decls,
// .@"opaque "=> |o| o.decls,
else => return error.WrongType, else => return error.WrongType,
}; };