Skip to content

Commit

Permalink
add CombinedTags
Browse files Browse the repository at this point in the history
  • Loading branch information
odygrd committed Nov 24, 2023
1 parent 46ce2cd commit 0e8136f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quill/include/quill/Utility.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class CombinedCustomTags : public quill::CustomTags
public:
constexpr CombinedCustomTags(TCustomTags... custom_tags) : _tags(std::move(custom_tags)...) {}

virtual void format(std::string& out) const override
void format(std::string& out) const override
{
std::apply([&out](const auto&... tags) { (((tags.format(out)), out.append(", ")), ...); }, _tags);
}
Expand Down

0 comments on commit 0e8136f

Please sign in to comment.