File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -447,7 +447,7 @@ template <typename FormatContext>
447
447
template <fly::FormattablePointer T>
448
448
constexpr BasicFormatParameter<FormatContext>::BasicFormatParameter(T value) noexcept :
449
449
m_type (Type::Pointer),
450
- m_value {.m_standard {.m_pointer { value} , .m_format {format_standard_value<FormatContext, T>}}}
450
+ m_value {.m_standard {.m_pointer = value, .m_format {format_standard_value<FormatContext, T>}}}
451
451
{
452
452
}
453
453
@@ -499,7 +499,7 @@ template <typename FormatContext>
499
499
template <fly::FormattableBoolean T>
500
500
constexpr BasicFormatParameter<FormatContext>::BasicFormatParameter(T value) noexcept :
501
501
m_type (Type::Bool),
502
- m_value {.m_standard {.m_bool { value} , .m_format {format_standard_value<FormatContext, T>}}}
502
+ m_value {.m_standard {.m_bool = value, .m_format {format_standard_value<FormatContext, T>}}}
503
503
{
504
504
}
505
505
You can’t perform that action at this time.
0 commit comments