mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 05:27:14 +09:00

This has come up several times during code review, so let's just enforce it using a new clang-format 20 option.
22 lines
280 B
C++
22 lines
280 B
C++
/*
|
|
* Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Wasm {
|
|
|
|
class AbstractMachine;
|
|
class Validator;
|
|
struct ValidationError;
|
|
struct Interpreter;
|
|
|
|
namespace Wasi {
|
|
|
|
struct Implementation;
|
|
|
|
}
|
|
|
|
}
|