diff options
author | Angela Upreti <aupreti@users.noreply.github.com> | 2024-10-25 14:35:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-25 18:35:42 +0000 |
commit | d407cda117704f9e7c2868e8159aa55a50c57de4 (patch) | |
tree | a8b133e3021c90c58c3599db1529cec1e94f8fa6 /src | |
parent | de421db1a556f579507e4445af27763c89dd8391 (diff) | |
download | binaryen-d407cda117704f9e7c2868e8159aa55a50c57de4.tar.gz binaryen-d407cda117704f9e7c2868e8159aa55a50c57de4.tar.bz2 binaryen-d407cda117704f9e7c2868e8159aa55a50c57de4.zip |
Fix typo in parsers.h (#7032)
Corrected `maybeRefType` declaration to `maybeReftype`.
Diffstat (limited to 'src')
-rw-r--r-- | src/parser/parsers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser/parsers.h b/src/parser/parsers.h index 85a1febb5..02c2e9e47 100644 --- a/src/parser/parsers.h +++ b/src/parser/parsers.h @@ -30,7 +30,7 @@ using namespace std::string_view_literals; template<typename Ctx> Result<typename Ctx::HeapTypeT> absheaptype(Ctx&, Shareability); template<typename Ctx> Result<typename Ctx::HeapTypeT> heaptype(Ctx&); -template<typename Ctx> MaybeResult<typename Ctx::RefTypeT> maybeRefType(Ctx&); +template<typename Ctx> MaybeResult<typename Ctx::RefTypeT> maybeReftype(Ctx&); template<typename Ctx> Result<typename Ctx::RefTypeT> reftype(Ctx&); template<typename Ctx> MaybeResult<typename Ctx::TypeT> tupletype(Ctx&); template<typename Ctx> Result<typename Ctx::TypeT> valtype(Ctx&); |