Skip to content

Commit

Permalink
namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahm-LANL committed Dec 13, 2024
1 parent e180050 commit b3aba86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ports-of-call/portable_arrays.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ class PortableMDArray {
if constexpr (sizeof...(Is) == 0) {
idx = 0;
} else if constexpr (sizeof...(Is) == 1) {
idx = get_first(idxs...);
idx = util::get_first(idxs...);
} else {
idx = util::fast_findex({static_cast<size_type>(idxs)...}, nxs_, strides_);
}
Expand All @@ -204,7 +204,7 @@ class PortableMDArray {
if constexpr (sizeof...(Is) == 0) {
idx = 0;
} else if constexpr (sizeof...(Is) == 1) {
idx = get_first(idxs...);
idx = util::get_first(idxs...);
} else {
idx = util::fast_findex({static_cast<size_type>(idxs)...}, nxs_, strides_);
}
Expand Down

0 comments on commit b3aba86

Please sign in to comment.