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 dd005ca commit 5f9dfd8Copy full SHA for 5f9dfd8
include/lxgui/gui_region_tpl.hpp
@@ -151,8 +151,8 @@ const std::vector<std::string>& region::get_type_list_impl_() {
151
return type;
152
} else {
153
static const std::vector<std::string> type = []() {
154
- using base = typename T::base;
155
- auto list = get_type_list_impl_<base>();
+ using child_base = typename T::base;
+ auto list = get_type_list_impl_<child_base>();
156
list.push_back(T::class_name);
157
return list;
158
}();
0 commit comments