Implement totalBytes() for StorageNull

This commit is contained in:
Azat Khuzhin 2020-03-29 17:44:32 +03:00
parent ee89dfc92b
commit fe9a638540

View File

@ -48,6 +48,10 @@ public:
{
return {0};
}
std::optional<UInt64> totalBytes() const override
{
return {0};
}
private: