From f7ea43e49e6fadccfa54ce156d0d53d4b76a9ef4 Mon Sep 17 00:00:00 2001 From: Angela Upreti Date: Wed, 23 Oct 2024 20:09:59 -0400 Subject: [PATCH] Update parsers.h Corrected maybeRefType declaration to maybeReftype --- src/parser/parsers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/parsers.h b/src/parser/parsers.h index 85a1febb54f..02c2e9e4760 100644 --- a/src/parser/parsers.h +++ b/src/parser/parsers.h @@ -30,7 +30,7 @@ using namespace std::string_view_literals; template Result absheaptype(Ctx&, Shareability); template Result heaptype(Ctx&); -template MaybeResult maybeRefType(Ctx&); +template MaybeResult maybeReftype(Ctx&); template Result reftype(Ctx&); template MaybeResult tupletype(Ctx&); template Result valtype(Ctx&);