state.cpp

This commit is contained in:
Antonio SJ Musumeci 2024-02-05 15:27:17 -06:00
parent 7689dbe9c3
commit 79bbeaf37e

View File

@ -10,5 +10,5 @@ State::State()
{ {
auto f = std::make_unique<Func2::CreateFF>(); auto f = std::make_unique<Func2::CreateFF>();
create = f; create = std::move(f);
} }