fix backends namespace

This commit is contained in:
Green Sky 2024-07-17 10:45:54 +02:00
parent d9a9fe7a74
commit a93a89c5db
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -5,7 +5,7 @@
#include <string>
namespace backend {
namespace Backends {
struct FilesystemStorage : public StorageBackendI {
FilesystemStorage(
@ -37,5 +37,5 @@ struct FilesystemStorage : public StorageBackendI {
void scanPathAsync(std::string path);
};
} // backend
} // Backends