Skip to content

Commit

Permalink
Fix factory registration
Browse files Browse the repository at this point in the history
  • Loading branch information
bakpaul committed Nov 22, 2024
1 parent 73a5216 commit 1ae8405
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ namespace sofa::component::linearsolver::iterative

extern void registerCGLinearSolver(sofa::core::ObjectFactory* factory);
extern void registerMinResLinearSolver(sofa::core::ObjectFactory* factory);
extern void registerShewchukPCGLinearSolver(sofa::core::ObjectFactory* factory);
extern void registerPCGLinearSolver(sofa::core::ObjectFactory* factory);

extern "C" {
SOFA_EXPORT_DYNAMIC_LIBRARY void initExternalModule();
Expand Down Expand Up @@ -62,7 +62,7 @@ void registerObjects(sofa::core::ObjectFactory* factory)
registerCGLinearSolver(factory);
linearsystem::registerMatrixFreeSystemGraphScattered(factory);
registerMinResLinearSolver(factory);
registerShewchukPCGLinearSolver(factory);
registerPCGLinearSolver(factory);
}

void init()
Expand Down

0 comments on commit 1ae8405

Please sign in to comment.