File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -807,7 +807,7 @@ void ADIOS2IOHandlerImpl::createDataset(
807807 filePos->gd = GroupOrDataset::DATASET;
808808 auto const varName = nameOfVariable (writable);
809809
810- json::TracingJSON config = [&]() -> json::ParsedConfig {
810+ json::TracingJSON parsedConfig = [&]() -> json::ParsedConfig {
811811 if (!m_buffered_dataset_config.has_value ())
812812 {
813813 // we are only interested in these values from the global config
@@ -845,11 +845,11 @@ void ADIOS2IOHandlerImpl::createDataset(
845845
846846 Shape arrayShape = Shape::GlobalArray;
847847 [&]() {
848- if (!config .json ().contains (" adios2" ))
848+ if (!parsedConfig .json ().contains (" adios2" ))
849849 {
850850 return ;
851851 };
852- json::TracingJSON adios2Config (config [" adios2" ]);
852+ json::TracingJSON adios2Config (parsedConfig [" adios2" ]);
853853 auto datasetOperators = getOperators (adios2Config);
854854 if (datasetOperators.has_value ())
855855 {
@@ -899,7 +899,7 @@ void ADIOS2IOHandlerImpl::createDataset(
899899#endif
900900
901901 parameters.warnUnusedParameters (
902- config ,
902+ parsedConfig ,
903903 " adios2" ,
904904 " Warning: parts of the backend configuration for ADIOS2 dataset '" +
905905 varName + " ' remain unused:\n " );
You can’t perform that action at this time.
0 commit comments