SyntaxFix
Write A Post
Hire A Developer
Questions
If anyone is getting this error from a function, try using a reference to the abstract class in the parameters instead.
void something(Abstract bruh){ }
to
void something(Abstract& bruh){ }