Skip to content

Commit 6639b8d

Browse files
committed
refactor(Template): remove unused parameter
1 parent 17a7212 commit 6639b8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/Metadata/Template.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,11 @@ tag_invoke(
119119
dom::LazyObjectMapTag,
120120
IO& io,
121121
TArg const& I,
122-
DomCorpus const* domCorpus)
122+
DomCorpus const*)
123123
{
124124
io.map("kind", toString(I.Kind));
125125
io.map("is-pack", I.IsPackExpansion);
126-
visit(I, [domCorpus, &io]<typename T>(const T& t) {
126+
visit(I, [&io]<typename T>(const T& t) {
127127
if constexpr(T::isType())
128128
{
129129
io.map("type", t.Type);

0 commit comments

Comments
 (0)