Skip to content

Commit

Permalink
Warning fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
muit committed Jan 20, 2025
1 parent a7da134 commit 67538d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Include/PipeMemory.h
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ namespace p
{
return 0;
}
virtual void GetBlocks(TInlineArray<ArenaBlock, 0>& outBlocks) const {}
virtual void GetBlocks(TInlineArray<ArenaBlock, 0>& /**outBlocks*/) const {}

virtual const struct MemoryStats* GetStats() const
{
Expand Down
4 changes: 2 additions & 2 deletions Include/PipeReflect.h
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ namespace p


template<typename T>
void CallSuperReadProperties(T& value, p::Reader& r)
void CallSuperReadProperties(T& /**value*/, p::Reader& /**r*/)
{}
template<typename T>
void CallSuperReadProperties(const T& value, p::Reader& r) requires(p::HasSuper<T>())
Expand All @@ -564,7 +564,7 @@ namespace p
}
}
template<typename T>
void CallSuperWriteProperties(const T& value, p::Writer& w)
void CallSuperWriteProperties(const T& /**value*/, p::Writer& /**w*/)
{}
template<typename T>
void CallSuperWriteProperties(const T& value, p::Writer& w) requires(p::HasSuper<T>())
Expand Down

0 comments on commit 67538d4

Please sign in to comment.