Skip to content

Commit

Permalink
fix: no extra ';'s
Browse files Browse the repository at this point in the history
  • Loading branch information
alandefreitas committed May 29, 2024
1 parent 8a3c4e3 commit d7f3b6d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/lib/Gen/adoc/AdocCorpus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ class DomJavadoc : public dom::LazyObjectImpl
doc::visit(I, visitor);
if(! s.empty())
list.emplace_back(key, std::move(s));
};
}

template<class T>
void
Expand All @@ -435,7 +435,7 @@ class DomJavadoc : public dom::LazyObjectImpl
{
list.emplace_back(key, std::move(s));
}
};
}

template<class T>
void
Expand All @@ -457,7 +457,7 @@ class DomJavadoc : public dom::LazyObjectImpl
return;
list.emplace_back(key, dom::newArray<
dom::DefaultArrayImpl>(std::move(elements)));
};
}

dom::Object
construct() const override
Expand Down
4 changes: 2 additions & 2 deletions src/lib/Gen/html/HTMLCorpus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ class DomJavadoc : public dom::LazyObjectImpl
doc::visit(I, visitor);
if(! s.empty())
list.emplace_back(key, std::move(s));
};
}

template<class T>
void
Expand All @@ -303,7 +303,7 @@ class DomJavadoc : public dom::LazyObjectImpl
{
list.emplace_back(key, std::move(s));
}
};
}

dom::Object
construct() const override
Expand Down

0 comments on commit d7f3b6d

Please sign in to comment.