Minor fixes

This commit is contained in:
SirLynix
2023-11-12 12:51:56 +01:00
parent 2ff2cd4a9c
commit 86e26008b3
10 changed files with 7 additions and 11 deletions

View File

@@ -6,7 +6,7 @@
namespace Nz
{
template<typename ...Args>
template<typename... Args>
Window& AppWindowingComponent::CreateWindow(Args&&... args)
{
return *m_windows.emplace_back(std::make_unique<Window>(std::forward<Args>(args)...));