From 67538d4a7f2c376af79f59508d22e332b1f675f0 Mon Sep 17 00:00:00 2001 From: muit Date: Mon, 20 Jan 2025 22:49:16 +0100 Subject: [PATCH] Warning fixes --- Include/PipeMemory.h | 2 +- Include/PipeReflect.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Include/PipeMemory.h b/Include/PipeMemory.h index f3dbe1de..b590ff5c 100644 --- a/Include/PipeMemory.h +++ b/Include/PipeMemory.h @@ -502,7 +502,7 @@ namespace p { return 0; } - virtual void GetBlocks(TInlineArray& outBlocks) const {} + virtual void GetBlocks(TInlineArray& /**outBlocks*/) const {} virtual const struct MemoryStats* GetStats() const { diff --git a/Include/PipeReflect.h b/Include/PipeReflect.h index 4822ced9..f65a6419 100644 --- a/Include/PipeReflect.h +++ b/Include/PipeReflect.h @@ -553,7 +553,7 @@ namespace p template - void CallSuperReadProperties(T& value, p::Reader& r) + void CallSuperReadProperties(T& /**value*/, p::Reader& /**r*/) {} template void CallSuperReadProperties(const T& value, p::Reader& r) requires(p::HasSuper()) @@ -564,7 +564,7 @@ namespace p } } template - void CallSuperWriteProperties(const T& value, p::Writer& w) + void CallSuperWriteProperties(const T& /**value*/, p::Writer& /**w*/) {} template void CallSuperWriteProperties(const T& value, p::Writer& w) requires(p::HasSuper())