1
0
Fork 0

inheritance of Device doesn't need to be virtual

This commit is contained in:
Kevin Matz 2023-05-20 13:41:49 -04:00
parent 4368320e9f
commit a26f6f0843
1 changed files with 2 additions and 1 deletions

View File

@ -32,7 +32,8 @@ namespace ARTNET {
/**
* @brief \cite ARTNET A device that translates DMX512 to or from Art-Net
*/
class Node : public virtual Device
class Node
: public Device
{
public:
explicit Node();