From dd4ae9b598d1b0ba4a00c426895ab4737ad9a00c Mon Sep 17 00:00:00 2001 From: Wenqing Wang <wenqing.wang@ufz.de> Date: Wed, 12 Mar 2014 10:44:04 +0100 Subject: [PATCH] Change include syntax for lis.h and petscksp.h --- MathLib/LinAlg/PETSc/PETScVector.h | 2 +- Tests/testrunner.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MathLib/LinAlg/PETSc/PETScVector.h b/MathLib/LinAlg/PETSc/PETScVector.h index 37552355f09..5474762dcca 100644 --- a/MathLib/LinAlg/PETSc/PETScVector.h +++ b/MathLib/LinAlg/PETSc/PETScVector.h @@ -20,7 +20,7 @@ #include <string> #include <vector> -#include "petscvec.h" +#include <petscvec.h> #include "LinAlg/VectorNorms.h" typedef Vec PETSc_Vec; diff --git a/Tests/testrunner.cpp b/Tests/testrunner.cpp index cadaa5d633c..af887d2e65b 100644 --- a/Tests/testrunner.cpp +++ b/Tests/testrunner.cpp @@ -18,11 +18,11 @@ #include "logog/include/logog.hpp" #ifdef USE_LIS -#include "lis.h" +#include <lis.h> #endif #ifdef USE_PETSC -#include "petscksp.h" +#include <petscksp.h> #endif #include "BaseLib/TemplateLogogFormatterSuppressedGCC.h" -- GitLab