Skip to content
Snippets Groups Projects
Commit d2b6b08e authored by Stephan Schulz's avatar Stephan Schulz
Browse files

remove C++17 nested-namespace-definition

parent 6196db1d
No related branches found
No related tags found
No related merge requests found
Pipeline #60380 passed
...@@ -2,6 +2,13 @@ ...@@ -2,6 +2,13 @@
Changelog Changelog
========= =========
Version 1.0
-----------
Version 1.0.0
*************
- Bug: Nested namespace definitions were present, which are a C++17 feature.
Version 0.9 Version 0.9
----------- -----------
......
...@@ -5,7 +5,8 @@ ...@@ -5,7 +5,8 @@
#include <cmath> #include <cmath>
#include <vector> #include <vector>
namespace ALL::Functions { namespace ALL{
namespace Functions {
/// function to compute the one-dimensional shift of the border between the /// function to compute the one-dimensional shift of the border between the
/// local process and the process indicated by neighbor_rank /// local process and the process indicated by neighbor_rank
...@@ -65,5 +66,5 @@ T borderShift1d(const int remote_rank, const int local_coord, ...@@ -65,5 +66,5 @@ T borderShift1d(const int remote_rank, const int local_coord,
return shift; return shift;
} }
}// namespace ALL::Functions }}// namespace ALL::Functions
#endif #endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment