We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee26465 commit dd77f45Copy full SHA for dd77f45
include/Periodic.h
@@ -7,7 +7,8 @@
7
// for more details.
8
//
9
10
-#pragma once
+#ifndef INCLUDE_PERIODIC_H_
11
+#define INCLUDE_PERIODIC_H_
12
13
#include "KokkosInterface.h"
14
@@ -48,8 +49,7 @@ struct TranslationMapping
48
49
stk::mesh::Selector selector_b;
50
};
51
-std::optional<TranslationMapping>
52
-make_translation_mapping(
+std::optional<TranslationMapping> make_translation_mapping(
53
const std::vector<PeriodicBCData>& data,
54
stk::mesh::BulkData& mesh,
55
const stk::mesh::Selector& active_not_aura,
@@ -81,3 +81,5 @@ void set_periodic_on_mesh(
81
const std::optional<periodic::TranslationMapping>& periodic);
82
83
} // namespace sierra::nalu::periodic
84
+
85
+#endif
0 commit comments