diff --git a/src/solanaceae/object_store/object_store.hpp b/src/solanaceae/object_store/object_store.hpp index 87bf359..9eee0a4 100644 --- a/src/solanaceae/object_store/object_store.hpp +++ b/src/solanaceae/object_store/object_store.hpp @@ -41,7 +41,7 @@ struct StorageBackendI { // TODO: stronger requirements // 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! - std::unique_ptr file2(Object o, FILE2_FLAGS flags); // default does nothing + virtual std::unique_ptr file2(Object o, FILE2_FLAGS flags); // default does nothing }; namespace ObjectStore::Events {