From 7577caf47b4ea5163df0b72205fac82f8ea9042e Mon Sep 17 00:00:00 2001 From: ADAM David Alan Martin Date: Wed, 15 May 2024 15:56:37 -0400 Subject: [PATCH] Relocate `Blob`, `Buffer`, and `DataChain` to `Memory`. --- Memory/CMakeLists.txt | 1 + Memory/ThreadSlab.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Memory/CMakeLists.txt b/Memory/CMakeLists.txt index cb3030b..694f4ac 100644 --- a/Memory/CMakeLists.txt +++ b/Memory/CMakeLists.txt @@ -1,2 +1,3 @@ add_subdirectory( Blob.test ) add_subdirectory( ThreadSlab.test ) +add_subdirectory( Blob.test ) diff --git a/Memory/ThreadSlab.h b/Memory/ThreadSlab.h index 9d99dc7..40d9cea 100644 --- a/Memory/ThreadSlab.h +++ b/Memory/ThreadSlab.h @@ -6,7 +6,7 @@ static_assert( __cplusplus > 2020'99 ); #include -#include +#include namespace Alepha::Hydrogen::Memory ::detail:: ThreadSlab_m {