Skip to content

Commit 23f5992

Browse files
committed
Lower check level
1 parent f4acdb0 commit 23f5992

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/bout/parallel_boundary_region.hxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ public:
231231

232232
template <bool check = true>
233233
BoutReal& getAt(Field3D& f, int off) const {
234-
ASSERT4(f.hasParallelSlices());
234+
ASSERT3(f.hasParallelSlices());
235235
if constexpr (check) {
236236
ASSERT3(valid() > -off - 2);
237237
}
@@ -240,7 +240,7 @@ public:
240240
}
241241
template <bool check = true>
242242
const BoutReal& getAt(const Field3D& f, int off) const {
243-
ASSERT4(f.hasParallelSlices());
243+
ASSERT3(f.hasParallelSlices());
244244
if constexpr (check) {
245245
ASSERT3(valid() > -off - 2);
246246
}

0 commit comments

Comments
 (0)