From 470badd0f647454e067862e17666560efce2068a Mon Sep 17 00:00:00 2001 From: Jared Duffey Date: Tue, 25 Jun 2024 17:04:25 -0400 Subject: [PATCH] Fixed size_t array issue on macOS * Causes issues on macOS and already covered by uint64 array Signed-off-by: Jared Duffey --- .../src/SimplnxCore/Filters/Algorithms/TupleTransfer.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Plugins/SimplnxCore/src/SimplnxCore/Filters/Algorithms/TupleTransfer.cpp b/src/Plugins/SimplnxCore/src/SimplnxCore/Filters/Algorithms/TupleTransfer.cpp index a6584139a3..364811a48d 100644 --- a/src/Plugins/SimplnxCore/src/SimplnxCore/Filters/Algorithms/TupleTransfer.cpp +++ b/src/Plugins/SimplnxCore/src/SimplnxCore/Filters/Algorithms/TupleTransfer.cpp @@ -52,10 +52,6 @@ void AddTupleTransferInstance(DataStructure& dataStructure, const DataPath& sele { tupleTransferFunctions.push_back(std::make_shared>(dataStructure, selectedDataPath, createdDataPath)); } - if(TemplateHelpers::CanDynamicCast>()(inputDataArray)) - { - tupleTransferFunctions.push_back(std::make_shared>(dataStructure, selectedDataPath, createdDataPath)); - } } } // namespace nx::core