aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_ty/src/consts.rs
diff options
context:
space:
mode:
authorJade <[email protected]>2021-05-11 23:18:45 +0100
committerJade <[email protected]>2021-05-11 23:18:45 +0100
commitf28c053c677203f4dd101222460081dd97c1f440 (patch)
treeb962313b55bfa54ea8385e65f4559725c64b38a2 /crates/hir_ty/src/consts.rs
parentdc63fea427280ff278bf89a8b9c78df606009910 (diff)
address review by @eddyb
Diffstat (limited to 'crates/hir_ty/src/consts.rs')
-rw-r--r--crates/hir_ty/src/consts.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/hir_ty/src/consts.rs b/crates/hir_ty/src/consts.rs
index 77d2a7a05..0044b1cff 100644
--- a/crates/hir_ty/src/consts.rs
+++ b/crates/hir_ty/src/consts.rs
@@ -4,7 +4,8 @@
4#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] 4#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
5pub enum ConstScalar { 5pub enum ConstScalar {
6 // for now, we only support the trivial case of constant evaluating the length of an array 6 // for now, we only support the trivial case of constant evaluating the length of an array
7 Usize(usize), 7 // Note that this is u64 because the target usize may be bigger than our usize
8 Usize(u64),
8 9
9 /// Case of an unknown value that rustc might know but we don't 10 /// Case of an unknown value that rustc might know but we don't
10 Unknown, 11 Unknown,