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 { //------------------------------------------------------------------------------