1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

fpga: fix factory

Signed-off-by: Steffen Vogel <post@steffenvogel.de>
This commit is contained in:
Steffen Vogel 2022-11-09 17:00:50 -05:00
parent 8395392239
commit 39825a8034

View file

@ -85,7 +85,11 @@ public:
virtual
Node * make()
{
return new FpgaNode;
auto *n = new FpgaNode;
init(n);
return n;
}
virtual