fix(assembly): move resetSolver() out-of-line to fix incomplete type error #305
Reference in New Issue
Block a user
Delete Branch "fix/resetsolver-incomplete-type"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
unique_ptr::reset() requires the complete type for its deleter, but IKCSolver is only forward-declared in AssemblyObject.h. Move the definition to AssemblyObject.cpp where the full header is included.
Fixes the build break introduced in #303.