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 0e8136f commit e9e57b1
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 @@ -61,7 +61,7 @@ QUILL_NODISCARD std::string to_string(T const& obj) noexcept
* Helper class for combining different CustomTag objects
*/
template <typename... TCustomTags>
class CombinedCustomTags : public quill::CustomTags
class CombinedCustomTags : public CustomTags
{
public:
constexpr CombinedCustomTags(TCustomTags... custom_tags) : _tags(std::move(custom_tags)...) {}
Expand Down

0 comments on commit e9e57b1

Please sign in to comment.