From ffc9b65bde586222b2c11ad227c026bf92df90cb Mon Sep 17 00:00:00 2001 From: Chris White Date: Mon, 17 Aug 2026 19:52:40 -0700 Subject: [PATCH 1/2] remove shadowed variable --- src/tribol/geom/CompGeom.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tribol/geom/CompGeom.hpp b/src/tribol/geom/CompGeom.hpp index cffbb483..4793a79b 100644 --- a/src/tribol/geom/CompGeom.hpp +++ b/src/tribol/geom/CompGeom.hpp @@ -1521,7 +1521,6 @@ TRIBOL_HOST_DEVICE inline void CommonPlanePair::resetPlanePointAndCentroidGap( c if ( m_dim == 3 ) { // construct array of polygon overlap vertex coordinates constexpr int max_dim = 3; - constexpr int max_nodes_per_overlap = 10; RealT xVert[max_dim * max_nodes_per_overlap]; for ( IndexT j{ 0 }; j < this->m_numPolyVert; ++j ) { From 48ffca0ff62555f5584852a4aa2cf805e754352d Mon Sep 17 00:00:00 2001 From: Chris White Date: Thu, 20 Aug 2026 16:44:25 -0700 Subject: [PATCH 2/2] shared needs slic not just core --- src/shared/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/CMakeLists.txt b/src/shared/CMakeLists.txt index e1995db5..c42867c4 100644 --- a/src/shared/CMakeLists.txt +++ b/src/shared/CMakeLists.txt @@ -23,7 +23,7 @@ set(shared_sources ) ## setup the dependency list for tribol shared library -set(shared_depends mfem axom::core) +set(shared_depends mfem axom::slic) blt_list_append(TO shared_depends ELEMENTS blt::mpi IF TRIBOL_USE_MPI ) blt_list_append(TO shared_depends ELEMENTS caliper IF TRIBOL_USE_CALIPER ) message(STATUS "Tribol shared library dependencies: ${shared_depends}")