Skip to content

Commit 21f09ea

Browse files
authored
LegateCheck() -> LEGATE_CHECK() (#942)
1 parent e63914d commit 21f09ea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/core/utilities/tuple.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ tuple<T> tuple<T>::map(const std::vector<std::int32_t>& mapping) const
322322
template <typename T>
323323
void tuple<T>::map_inplace(std::vector<std::int32_t>& mapping)
324324
{
325-
LegateCheck(mapping.size() == size());
325+
LEGATE_CHECK(mapping.size() == size());
326326
// https://devblogs.microsoft.com/oldnewthing/20170102-00/?p=95095
327327
for (std::size_t i = 0; i < mapping.size(); ++i) {
328328
auto current = i;

0 commit comments

Comments
 (0)