From ca51a35f5cb31ce56f13c59bcdaa0bd4a9f03c93 Mon Sep 17 00:00:00 2001 From: John Date: Tue, 27 Feb 2024 23:33:20 -0600 Subject: [PATCH] ast: Reduce the number of chained references to 65535 --- libconlang/src/ast.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libconlang/src/ast.rs b/libconlang/src/ast.rs index 1e74d81..3335fec 100644 --- a/libconlang/src/ast.rs +++ b/libconlang/src/ast.rs @@ -221,7 +221,7 @@ pub struct TyTuple { #[derive(Clone, Debug, PartialEq, Eq)] pub struct TyRef { - pub count: usize, + pub count: u16, pub to: Path, } #[derive(Clone, Debug, PartialEq, Eq)]