summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibSQL/TupleDescriptor.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibSQL/TupleDescriptor.h')
-rw-r--r--Userland/Libraries/LibSQL/TupleDescriptor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibSQL/TupleDescriptor.h b/Userland/Libraries/LibSQL/TupleDescriptor.h
index 2fc34172f8..c95dcfcb07 100644
--- a/Userland/Libraries/LibSQL/TupleDescriptor.h
+++ b/Userland/Libraries/LibSQL/TupleDescriptor.h
@@ -7,7 +7,7 @@
#pragma once
#include <AK/Vector.h>
-#include <LibSQL/AST.h>
+#include <LibSQL/AST/AST.h>
#include <LibSQL/Type.h>
namespace SQL {
@@ -15,7 +15,7 @@ namespace SQL {
struct TupleElement {
String name { "" };
SQLType type { SQLType::Text };
- Order order { Order::Ascending };
+ AST::Order order { AST::Order::Ascending };
bool operator==(TupleElement const&) const = default;
};