fix: some destructor warning

This commit is contained in:
robin
2024-05-06 12:39:01 +02:00
parent 86fda876b1
commit e43df5df78
4 changed files with 4 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ int main() {
shared_ptr<UVGrid> uvGrid = std::make_shared<UVGrid>();
auto kernelRK4 = make_unique<RK4AdvectionKernel>(uvGrid);
auto l = new LGlyphLayer(uvGrid, move(kernelRK4));
auto l = new LGlyphLayer(uvGrid, std::move(kernelRK4));
Program *program = new Program(DT);
program->addLayer(new BackgroundImage("../../../../data/map_661-661.png"));