@@ -87,7 +87,8 @@ struct set_caster {
87
87
}
88
88
89
89
PYBIND11_TYPE_CASTER (type, const_name(" Set[" ) + get_frozen_name<key_conv>() + const_name(" ]" ));
90
- static constexpr auto frozen_name = const_name(" FrozenSet[" ) + get_frozen_name<key_conv>() + const_name(" ]" );
90
+ static constexpr auto frozen_name
91
+ = const_name(" FrozenSet[" ) + get_frozen_name<key_conv>() + const_name(" ]" );
91
92
};
92
93
93
94
template <typename Type, typename Key, typename Value>
@@ -189,7 +190,8 @@ struct list_caster {
189
190
}
190
191
191
192
PYBIND11_TYPE_CASTER (Type, const_name(" List[" ) + value_conv::name + const_name(" ]" ));
192
- static constexpr auto frozen_name = const_name(" Tuple[" ) + value_conv::name + const_name(" , ...]" );
193
+ static constexpr auto frozen_name
194
+ = const_name(" Tuple[" ) + value_conv::name + const_name(" , ...]" );
193
195
};
194
196
195
197
template <typename Type, typename Alloc>
@@ -259,11 +261,11 @@ struct array_caster {
259
261
const_name(" [" ) + const_name<Size>()
260
262
+ const_name(" ]" ))
261
263
+ const_name(" ]" ));
262
- static constexpr auto frozen_name = const_name( " Tuple[ " ) + value_conv::name
263
- + const_name<Resizable>(const_name( " , ... " ),
264
- const_name ( " [ " ) + const_name<Size>()
265
- + const_name(" ]" ))
266
- + const_name(" ]" );
264
+ static constexpr auto frozen_name
265
+ = const_name( " Tuple[ " ) + value_conv::name
266
+ + const_name<Resizable>(const_name( " , ... " ),
267
+ const_name ( " [ " ) + const_name<Size>() + const_name(" ]" ))
268
+ + const_name(" ]" );
267
269
};
268
270
269
271
template <typename Type, size_t Size>
0 commit comments