summaryrefslogtreecommitdiff
path: root/view/sharedcache/core/SharedCache.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'view/sharedcache/core/SharedCache.cpp')
-rw-r--r--view/sharedcache/core/SharedCache.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/view/sharedcache/core/SharedCache.cpp b/view/sharedcache/core/SharedCache.cpp
index 1f3219df..79cff43e 100644
--- a/view/sharedcache/core/SharedCache.cpp
+++ b/view/sharedcache/core/SharedCache.cpp
@@ -3591,11 +3591,11 @@ void BackingCache::Store(SerializationContext& context) const
BackingCache BackingCache::Load(DeserializationContext& context)
{
- return BackingCache {
- .MSL(path),
- .MSL(isPrimary),
- .MSL(mappings),
- };
+ BackingCache cache;
+ cache.MSL(path);
+ cache.MSL(isPrimary);
+ cache.MSL(mappings);
+ return cache;
}
#if defined(__GNUC__) || defined(__clang__)