big oops, forgot to declare method virtual

This commit is contained in:
Green Sky 2024-07-22 18:18:05 +02:00
parent b185ffc886
commit 74e57dad31
No known key found for this signature in database

View File

@ -41,7 +41,7 @@ struct StorageBackendI {
// TODO: stronger requirements // TODO: stronger requirements
// the backend might decide to not support writing using file2, if it's eg. zstd compressed // the backend might decide to not support writing using file2, if it's eg. zstd compressed
// backends might only support a single file2 instance per object! // backends might only support a single file2 instance per object!
std::unique_ptr<File2I> file2(Object o, FILE2_FLAGS flags); // default does nothing virtual std::unique_ptr<File2I> file2(Object o, FILE2_FLAGS flags); // default does nothing
}; };
namespace ObjectStore::Events { namespace ObjectStore::Events {