Skip to content

Commit

Permalink
Fixed size_t array issue on macOS
Browse files Browse the repository at this point in the history
* Causes issues on macOS and already covered by uint64 array

Signed-off-by: Jared Duffey <[email protected]>
  • Loading branch information
JDuffeyBQ committed Jun 26, 2024
1 parent 6f8a01d commit 470badd
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,6 @@ void AddTupleTransferInstance(DataStructure& dataStructure, const DataPath& sele
{
tupleTransferFunctions.push_back(std::make_shared<TransferTuple<bool>>(dataStructure, selectedDataPath, createdDataPath));
}
if(TemplateHelpers::CanDynamicCast<DataArray<size_t>>()(inputDataArray))
{
tupleTransferFunctions.push_back(std::make_shared<TransferTuple<size_t>>(dataStructure, selectedDataPath, createdDataPath));
}
}

} // namespace nx::core

0 comments on commit 470badd

Please sign in to comment.