We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
LegateCheck()
LEGATE_CHECK()
1 parent e63914d commit 21f09eaCopy full SHA for 21f09ea
1 file changed
src/core/utilities/tuple.inl
@@ -322,7 +322,7 @@ tuple<T> tuple<T>::map(const std::vector<std::int32_t>& mapping) const
322
template <typename T>
323
void tuple<T>::map_inplace(std::vector<std::int32_t>& mapping)
324
{
325
- LegateCheck(mapping.size() == size());
+ LEGATE_CHECK(mapping.size() == size());
326
// https://devblogs.microsoft.com/oldnewthing/20170102-00/?p=95095
327
for (std::size_t i = 0; i < mapping.size(); ++i) {
328
auto current = i;
0 commit comments