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