Skip to content
Snippets Groups Projects
Commit 0f527d58 authored by Nils Kohl's avatar Nils Kohl :full_moon_with_face:
Browse files

Removed boost::array dependency in pe

parent 136893f4
Branches
Tags
No related merge requests found
...@@ -25,8 +25,7 @@ ...@@ -25,8 +25,7 @@
#include "core/math/AABBFwd.h" #include "core/math/AABBFwd.h"
#include "stencil/D3Q27.h" #include "stencil/D3Q27.h"
#include <boost/array.hpp> #include <array>
#include <memory> #include <memory>
#include <vector> #include <vector>
...@@ -188,7 +187,7 @@ struct StorageSelect ...@@ -188,7 +187,7 @@ struct StorageSelect
}; };
///Container for local and shadow body storage ///Container for local and shadow body storage
typedef boost::array<BodyStorage, 2> Storage; typedef std::array<BodyStorage, 2> Storage;
} // namespace pe } // namespace pe
} // namespace walberla } // namespace walberla
...@@ -32,8 +32,6 @@ ...@@ -32,8 +32,6 @@
#include <vector> #include <vector>
#include <boost/array.hpp>
namespace walberla { namespace walberla {
namespace pe { namespace pe {
......
...@@ -36,8 +36,6 @@ ...@@ -36,8 +36,6 @@
#include <vector> #include <vector>
#include <boost/array.hpp>
namespace walberla { namespace walberla {
namespace pe { namespace pe {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment