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())