LibSQL: Add missing header includes

These are explicitly needed, and will cause compile errors as headers
moved around in subsequent commits.
This commit is contained in:
Timothy Flynn 2022-09-23 09:23:50 -04:00 committed by Ali Mohammad Pur
parent 2029c98fa7
commit 5f549fe5d9
Notes: sideshowbarker 2024-07-17 05:48:41 +09:00
3 changed files with 3 additions and 0 deletions

View File

@ -13,6 +13,7 @@
#include <LibSQL/Forward.h>
#include <LibSQL/Heap.h>
#include <LibSQL/Meta.h>
#include <LibSQL/Serializer.h>
namespace SQL {

View File

@ -7,6 +7,7 @@
#include <LibSQL/Heap.h>
#include <LibSQL/Index.h>
#include <LibSQL/Meta.h>
#include <LibSQL/TupleDescriptor.h>
namespace SQL {

View File

@ -9,6 +9,7 @@
#include <LibCore/Object.h>
#include <LibSQL/Forward.h>
#include <LibSQL/Meta.h>
#include <LibSQL/Serializer.h>
namespace SQL {