commit ec0e51f9c746f7c662621aea2e676104f799475d
parent 80c20f20976758b3214e0227baa00a8805e769c4
Author: Drew DeVault <sir@cmpwn.com>
Date: Tue, 5 Oct 2021 15:18:48 +0200
types: fix slice repr
Left over from an earlier refactoring
Signed-off-by: Drew DeVault <sir@cmpwn.com>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/types/reflect.ha b/types/reflect.ha
@@ -23,7 +23,7 @@ export type flags = enum uint {
// Details of the type representation.
export type repr = (alias | array | builtin
- | enumerated | func | pointer | slice_repr
+ | enumerated | func | pointer | slice
| struct_union | tagged | tuple);
// A type alias.