summaryrefslogtreecommitdiffstats
path: root/crates/rebel-parse/src/ast/typ.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/rebel-parse/src/ast/typ.rs')
-rw-r--r--crates/rebel-parse/src/ast/typ.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rebel-parse/src/ast/typ.rs b/crates/rebel-parse/src/ast/typ.rs
index 4b509e6..37aa33e 100644
--- a/crates/rebel-parse/src/ast/typ.rs
+++ b/crates/rebel-parse/src/ast/typ.rs
@@ -11,7 +11,7 @@ pub enum Type<'a> {
pub enum Literal<'a> {
Unit,
Tuple(Vec<Type<'a>>),
- Array(Box<Type<'a>>, Option<usize>),
+ Array(Box<Type<'a>>, Option<u32>),
Struct(Vec<StructField<'a>>),
}