Merge commit '38777cfac8868b3628332090260710d5ac26aba0'
All checks were successful
Build / build (push) Successful in 3m23s

This commit is contained in:
2025-01-20 02:15:45 -06:00
2 changed files with 7 additions and 4 deletions

View File

@ -218,7 +218,7 @@ class ItemMakerT final: public ItemMaker {
std::move(pParentDir),
std::move(fileExt)),
m_fmt{pFmt} {
installTemplate(ox::make_unique<ItemTemplateT<T>>(std::move(pItem)));
installTemplate(ox::make_unique<ItemTemplateT<T>>("Default", std::move(pItem)));
}
constexpr ItemMakerT(
@ -232,7 +232,7 @@ class ItemMakerT final: public ItemMaker {
std::move(pParentDir),
std::move(fileExt)),
m_fmt{pFmt} {
installTemplate(ox::make_unique<ItemTemplateT<T>>(std::move(pItem)));
installTemplate(ox::make_unique<ItemTemplateT<T>>("Default", std::move(pItem)));
}
ox::StringView typeName() const noexcept override {