From 379f0d654d14ad6eb0a286b4ca0b1423163d71b2 Mon Sep 17 00:00:00 2001 From: John Peterson Date: Mon, 5 Mar 2018 08:41:59 -0700 Subject: [PATCH] Include the right header for PetscBLASInt. For some reason in c3659b11 I thought this type was defined in petscblaslapack.h, but it seems to have been in petscsys.h for some time. This should help fix an issue raised over in xikaij/fredkin-koehler#3 where conflicting BLAS functions were being defined in both scalfmm and PETSc. Refs #1593. --- include/numerics/dense_matrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/numerics/dense_matrix.h b/include/numerics/dense_matrix.h index 23442e0541c..24391c2f2c2 100644 --- a/include/numerics/dense_matrix.h +++ b/include/numerics/dense_matrix.h @@ -27,7 +27,7 @@ // For the definition of PetscBLASInt. #if (LIBMESH_HAVE_PETSC) # include "libmesh/petsc_macro.h" -# include +# include #endif // C++ includes