From d18b668849d9f9d77bddce32a683a0bb2e2674f1 Mon Sep 17 00:00:00 2001 From: Michael Jackson Date: Tue, 18 Feb 2025 17:02:37 -0500 Subject: [PATCH] Remove code that is not used Signed-off-by: Michael Jackson --- .../Filters/CreateDataArrayAdvancedFilter.cpp | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/Plugins/SimplnxCore/src/SimplnxCore/Filters/CreateDataArrayAdvancedFilter.cpp b/src/Plugins/SimplnxCore/src/SimplnxCore/Filters/CreateDataArrayAdvancedFilter.cpp index 1a2a693272..d199369814 100644 --- a/src/Plugins/SimplnxCore/src/SimplnxCore/Filters/CreateDataArrayAdvancedFilter.cpp +++ b/src/Plugins/SimplnxCore/src/SimplnxCore/Filters/CreateDataArrayAdvancedFilter.cpp @@ -20,21 +20,6 @@ using namespace nx::core; -namespace -{ -struct CreateAndInitArrayFunctor -{ - template - void operator()(IDataArray* iDataArray, const std::string& initValue) - { - Result result = ConvertTo::convert(initValue); - - auto* dataStore = iDataArray->template getIDataStoreAs>(); - dataStore->fill(result.value()); - } -}; -} // namespace - namespace nx::core { //------------------------------------------------------------------------------