File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -775,7 +775,7 @@ void ADIOS2IOHandlerImpl::createDataset(
775775 filePos->gd = GroupOrDataset::DATASET;
776776 auto const varName = nameOfVariable (writable);
777777
778- json::TracingJSON config = [&]() -> json::ParsedConfig {
778+ json::TracingJSON parsedConfig = [&]() -> json::ParsedConfig {
779779 if (!m_buffered_dataset_config.has_value ())
780780 {
781781 // we are only interested in these values from the global config
@@ -813,11 +813,11 @@ void ADIOS2IOHandlerImpl::createDataset(
813813
814814 Shape arrayShape = Shape::GlobalArray;
815815 [&]() {
816- if (!config .json ().contains (" adios2" ))
816+ if (!parsedConfig .json ().contains (" adios2" ))
817817 {
818818 return ;
819819 };
820- json::TracingJSON adios2Config (config [" adios2" ]);
820+ json::TracingJSON adios2Config (parsedConfig [" adios2" ]);
821821 auto datasetOperators = getOperators (adios2Config);
822822 if (datasetOperators.has_value ())
823823 {
@@ -867,7 +867,7 @@ void ADIOS2IOHandlerImpl::createDataset(
867867#endif
868868
869869 parameters.warnUnusedParameters (
870- config ,
870+ parsedConfig ,
871871 " adios2" ,
872872 " Warning: parts of the backend configuration for ADIOS2 dataset '" +
873873 varName + " ' remain unused:\n " );
You can’t perform that action at this time.
0 commit comments