Skip to content

Commit

Permalink
Include the right header for PetscBLASInt.
Browse files Browse the repository at this point in the history
For some reason in c3659b1 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/koala#3
where conflicting BLAS functions were being defined in both scalfmm
and PETSc.

Refs #1593.
  • Loading branch information
jwpeterson committed Mar 5, 2018
1 parent 6387f4b commit 379f0d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/numerics/dense_matrix.h
Expand Up @@ -27,7 +27,7 @@
// For the definition of PetscBLASInt.
#if (LIBMESH_HAVE_PETSC)
# include "libmesh/petsc_macro.h"
# include <petscblaslapack.h>
# include <petscsys.h>
#endif

// C++ includes
Expand Down

0 comments on commit 379f0d6

Please sign in to comment.