From a93a89c5dbeec37edd0160a48e64dc1e423a79af Mon Sep 17 00:00:00 2001 From: Green Sky Date: Wed, 17 Jul 2024 10:45:54 +0200 Subject: [PATCH] fix backends namespace --- src/solanaceae/object_store/backends/filesystem_storage.cpp | 4 ++-- src/solanaceae/object_store/backends/filesystem_storage.hpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/solanaceae/object_store/backends/filesystem_storage.cpp b/src/solanaceae/object_store/backends/filesystem_storage.cpp index baf47ad..d4506bb 100644 --- a/src/solanaceae/object_store/backends/filesystem_storage.cpp +++ b/src/solanaceae/object_store/backends/filesystem_storage.cpp @@ -27,7 +27,7 @@ static const char* metaFileTypeSuffix(MetaFileType mft) { } -namespace backend { +namespace Backends { FilesystemStorage::FilesystemStorage( ObjectStore2& os, @@ -617,5 +617,5 @@ void FilesystemStorage::scanPathAsync(std::string path) { scanPath(path); // TODO: make async and post result } -} // backend +} // Backends diff --git a/src/solanaceae/object_store/backends/filesystem_storage.hpp b/src/solanaceae/object_store/backends/filesystem_storage.hpp index 037a14c..3c19bce 100644 --- a/src/solanaceae/object_store/backends/filesystem_storage.hpp +++ b/src/solanaceae/object_store/backends/filesystem_storage.hpp @@ -5,7 +5,7 @@ #include -namespace backend { +namespace Backends { struct FilesystemStorage : public StorageBackendI { FilesystemStorage( @@ -37,5 +37,5 @@ struct FilesystemStorage : public StorageBackendI { void scanPathAsync(std::string path); }; -} // backend +} // Backends