From 0318574915649969318818128164346398386141 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Mon, 17 Feb 2025 17:08:56 -0500 Subject: [SharedCache] Remove serialization of "unsigned long" in favor of uintX_t --- view/sharedcache/core/MetadataSerializable.cpp | 5 ----- 1 file changed, 5 deletions(-) (limited to 'view/sharedcache/core/MetadataSerializable.cpp') 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(); } -- cgit v1.3.1