diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2023-01-27 17:09:50 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-01-27 20:33:18 +0000 |
commit | 8d31e04b8abe83d08ec2b90a8a52e0eb7f955874 (patch) | |
tree | af758d10bfe3dc073fba99b68874517a65c4fdec | |
parent | 5cc4b37bf33e43e50bb88aa6548f82326a94fe0c (diff) | |
download | serenity-8d31e04b8abe83d08ec2b90a8a52e0eb7f955874.zip |
LibWasm: Remove declarations for non-existent methods
-rw-r--r-- | Userland/Libraries/LibWasm/AbstractMachine/Validator.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWasm/AbstractMachine/Validator.h b/Userland/Libraries/LibWasm/AbstractMachine/Validator.h index 75f8bd3bb9..66a47566a8 100644 --- a/Userland/Libraries/LibWasm/AbstractMachine/Validator.h +++ b/Userland/Libraries/LibWasm/AbstractMachine/Validator.h @@ -241,7 +241,6 @@ public: ErrorOr<void, ValidationError> validate_instruction(Instruction const&, Stack& stack, bool& is_constant); // Types - bool type_is_subtype_of(ValueType const& candidate_subtype, ValueType const& candidate_supertype); ErrorOr<void, ValidationError> validate(Limits const&, size_t k); // n <= 2^k-1 && m? <= 2^k-1 ErrorOr<FunctionType, ValidationError> validate(BlockType const&); ErrorOr<void, ValidationError> validate(FunctionType const&) { return {}; } |