Skip to content

Commit

Permalink
refactor(Template): remove unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
alandefreitas committed Nov 13, 2024
1 parent 17a7212 commit 6639b8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/Metadata/Template.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,11 @@ tag_invoke(
dom::LazyObjectMapTag,
IO& io,
TArg const& I,
DomCorpus const* domCorpus)
DomCorpus const*)
{
io.map("kind", toString(I.Kind));
io.map("is-pack", I.IsPackExpansion);
visit(I, [domCorpus, &io]<typename T>(const T& t) {
visit(I, [&io]<typename T>(const T& t) {
if constexpr(T::isType())
{
io.map("type", t.Type);
Expand Down

0 comments on commit 6639b8d

Please sign in to comment.