summaryrefslogtreecommitdiff
path: root/view/sharedcache/core/MetadataSerializable.cpp
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2025-02-17 17:08:56 -0500
committerGlenn Smith <glenn@vector35.com>2025-02-17 17:12:20 -0500
commit0318574915649969318818128164346398386141 (patch)
treebfbee7eff433634129f8af43fb1661dd30e9f6a6 /view/sharedcache/core/MetadataSerializable.cpp
parent1665263264093279027114770741018577932515 (diff)
[SharedCache] Remove serialization of "unsigned long" in favor of uintX_t
Diffstat (limited to 'view/sharedcache/core/MetadataSerializable.cpp')
-rw-r--r--view/sharedcache/core/MetadataSerializable.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/view/sharedcache/core/MetadataSerializable.cpp b/view/sharedcache/core/MetadataSerializable.cpp
index 2c68ac11..eaf82c8b 100644
--- a/view/sharedcache/core/MetadataSerializable.cpp
+++ b/view/sharedcache/core/MetadataSerializable.cpp
@@ -47,11 +47,6 @@ void Serialize(SerializationContext& context, uint64_t value) {
context.writer.Uint64(value);
}
-void Serialize(SerializationContext& context, unsigned long value)
-{
- context.writer.Uint64(value);
-}
-
void Deserialize(DeserializationContext& context, std::string_view name, bool& b) {
b = context.doc[name.data()].GetBool();
}