mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-05 02:27:45 +00:00
Minor comment fix
This commit is contained in:
parent
43ab964c47
commit
33eba1049d
@ -31,11 +31,11 @@ auto unwrap(const std::reference_wrapper<T>& v) -> const T& {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// node is defined outside dynamic_arg_list to workaround a C2504 bug in MSVC
|
// node is defined outside dynamic_arg_list to workaround a C2504 bug in MSVC
|
||||||
// 2022 (v17.10.0)
|
// 2022 (v17.10.0).
|
||||||
//
|
//
|
||||||
// Workaround for clang's -Wweak-vtables. Unlike for regular classes, for
|
// Workaround for clang's -Wweak-vtables. Unlike for regular classes, for
|
||||||
// templates it doesn't complain about inability to deduce single translation
|
// templates it doesn't complain about inability to deduce single translation
|
||||||
// unit for placing vtable. So storage_node_base is made a fake template.
|
// unit for placing vtable. So node is made a fake template.
|
||||||
template <typename = void> struct node {
|
template <typename = void> struct node {
|
||||||
virtual ~node() = default;
|
virtual ~node() = default;
|
||||||
std::unique_ptr<node<>> next;
|
std::unique_ptr<node<>> next;
|
||||||
|
Loading…
Reference in New Issue
Block a user