From c4481aa1e9fc1305c9c2e62a0a5259057fc4dbf7 Mon Sep 17 00:00:00 2001 From: odlomax Date: Thu, 30 Nov 2023 15:07:11 +0000 Subject: [PATCH] Removed static factory linking. --- src/atlas/interpolation/method/MethodFactory.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/atlas/interpolation/method/MethodFactory.cc b/src/atlas/interpolation/method/MethodFactory.cc index f68ace367..de1739863 100644 --- a/src/atlas/interpolation/method/MethodFactory.cc +++ b/src/atlas/interpolation/method/MethodFactory.cc @@ -8,7 +8,6 @@ * nor does it submit to any jurisdiction. */ -#include "atlas/library/defines.h" #include "MethodFactory.h" // for static linking @@ -17,7 +16,6 @@ #include "knn/GridBoxMaximum.h" #include "knn/KNearestNeighbours.h" #include "knn/NearestNeighbour.h" -#include "sphericalvector/SphericalVector.h" #include "structured/Cubic2D.h" #include "structured/Cubic3D.h" #include "structured/Linear2D.h" @@ -48,9 +46,6 @@ void force_link() { MethodBuilder(); MethodBuilder(); MethodBuilder(); -#if ATLAS_HAVE_EIGEN - MethodBuilder(); -#endif } } link; }