Skip to content
Snippets Groups Projects
Commit c23ba640 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

Fix various include directive issues.

 - formatting
 - system includes vs. project includes
 - use absolute paths
parent f241c4ac
No related branches found
No related tags found
No related merge requests found
...@@ -28,8 +28,8 @@ ...@@ -28,8 +28,8 @@
#include <limits> #include <limits>
#ifdef GEOTIFF_FOUND #ifdef GEOTIFF_FOUND
#include "geo_tiffp.h" #include <geo_tiffp.h>
#include "xtiffio.h" #include <xtiffio.h>
#endif #endif
#include <memory> #include <memory>
......
...@@ -10,11 +10,11 @@ ...@@ -10,11 +10,11 @@
#include "Subdivision.h" #include "Subdivision.h"
#include <BaseLib/Error.h>
#include <algorithm> #include <algorithm>
#include <cmath> #include <cmath>
#include "BaseLib/Error.h"
namespace BaseLib namespace BaseLib
{ {
GradualSubdivision::GradualSubdivision(const double L, GradualSubdivision::GradualSubdivision(const double L,
......
...@@ -14,9 +14,11 @@ ...@@ -14,9 +14,11 @@
#pragma once #pragma once
#include <lis.h>
#include <vector> #include <vector>
#include "BaseLib/Logging.h" #include "BaseLib/Logging.h"
#include "lis.h"
namespace MathLib namespace MathLib
{ {
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
* *
*/ */
#include "../fileIO.h" #include "MeshLib/IO/XDMF/fileIO.h"
#include <hdf5.h> #include <hdf5.h>
#include <mpi.h> #include <mpi.h>
......
...@@ -16,8 +16,8 @@ ...@@ -16,8 +16,8 @@
#include <deque> #include <deque>
#include <numeric> #include <numeric>
#include "../fileIO.h"
#include "BaseLib/Logging.h" #include "BaseLib/Logging.h"
#include "MeshLib/IO/XDMF/fileIO.h"
namespace MeshLib::IO namespace MeshLib::IO
{ {
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
* *
*/ */
#include "../fileIO.h" #include "MeshLib/IO/XDMF/fileIO.h"
#include <hdf5.h> #include <hdf5.h>
namespace MeshLib::IO namespace MeshLib::IO
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
*/ */
#include "../partition.h" #include "MeshLib/IO/XDMF/partition.h"
namespace MeshLib::IO namespace MeshLib::IO
{ {
...@@ -21,4 +21,4 @@ std::pair<std::size_t, std::size_t> getPartitionInfo(std::size_t const size) ...@@ -21,4 +21,4 @@ std::pair<std::size_t, std::size_t> getPartitionInfo(std::size_t const size)
{ {
return {0, size}; return {0, size};
} }
} // namespace MeshLib::IO } // namespace MeshLib::IO
\ No newline at end of file
...@@ -15,10 +15,10 @@ ...@@ -15,10 +15,10 @@
#include <cmath> #include <cmath>
#include <memory> #include <memory>
#include "../Elements/Element.h"
#include "../Mesh.h"
#include "../Node.h"
#include "GeoLib/GEOObjects.h" #include "GeoLib/GEOObjects.h"
#include "MeshLib/Elements/Element.h"
#include "MeshLib/Mesh.h"
#include "MeshLib/Node.h"
namespace MeshLib namespace MeshLib
{ {
......
...@@ -10,8 +10,8 @@ ...@@ -10,8 +10,8 @@
#pragma once #pragma once
#include<array> #include <array>
#include<cassert> #include <cassert>
#include "NumLib/Fem/CoordinatesMapping/NaturalNodeCoordinates.h" #include "NumLib/Fem/CoordinatesMapping/NaturalNodeCoordinates.h"
#include "NumLib/Fem/FiniteElement/TemplateIsoparametric.h" #include "NumLib/Fem/FiniteElement/TemplateIsoparametric.h"
......
...@@ -9,14 +9,14 @@ ...@@ -9,14 +9,14 @@
#pragma once #pragma once
#include <autocheck/autocheck.hpp>
#include <cmath> #include <cmath>
#include <memory> #include <memory>
#include <random> #include <random>
#include <utility> #include <utility>
#include "autocheck/autocheck.hpp"
#include "MathLib/Point3d.h"
#include "GeoLib/LineSegment.h" #include "GeoLib/LineSegment.h"
#include "MathLib/Point3d.h"
namespace autocheck namespace autocheck
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment