From 35f0450dd88aa4d93026bfec34052d3f7c8d0e89 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Fri, 23 Apr 2021 21:38:31 -0400 Subject: [PATCH] LibSQL: Add missing forward declarations --- Userland/Libraries/LibSQL/Forward.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Userland/Libraries/LibSQL/Forward.h b/Userland/Libraries/LibSQL/Forward.h index 41104c72b5..2569fc65d0 100644 --- a/Userland/Libraries/LibSQL/Forward.h +++ b/Userland/Libraries/LibSQL/Forward.h @@ -24,9 +24,11 @@ class Delete; class DropTable; class ErrorExpression; class ErrorStatement; +class ExistsExpression; class Expression; class GroupByClause; class InChainedExpression; +class InSelectionExpression; class InTableExpression; class InvertibleNestedDoubleExpression; class InvertibleNestedExpression;