1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:58:11 +00:00

LibJS: Correctly forward declare "Argument" as a struct

This commit is contained in:
Andreas Kling 2020-04-04 10:46:00 +02:00
parent 9430918026
commit a502ba73dc

View file

@ -29,7 +29,6 @@
namespace JS {
class ASTNode;
class Argument;
class Cell;
class Error;
class Exception;
@ -48,6 +47,8 @@ class Statement;
class Value;
enum class DeclarationType;
struct Argument;
template<class T>
class Handle;