We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 889313e commit ab014edCopy full SHA for ab014ed
src/base/style/impl.tpp
@@ -15,11 +15,9 @@ template <class T> T Sheet<T>::getFullParams() const
15
16
template <class T> ParamRegistry<T>::ParamRegistry()
17
{
18
- Refl::visit<T>([this]<class U>(
19
- U && accessor,
20
- const std::initializer_list<std::string_view> &thePath = {})
21
- requires std::is_constructible_v<Accessor, U>
22
- {
+ Refl::visit<T>([this]<class U>(U && accessor,
+ const std::initializer_list<std::string_view> &thePath =
+ {}) requires std::is_constructible_v<Accessor, U> {
23
std::string currentPath;
24
for (auto sv : thePath) {
25
if (!currentPath.empty()) currentPath += '.';
0 commit comments