File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -777,7 +777,7 @@ void ADIOS2IOHandlerImpl::createDataset(
777
777
filePos->gd = GroupOrDataset::DATASET;
778
778
auto const varName = nameOfVariable (writable);
779
779
780
- json::TracingJSON config = [&]() -> json::ParsedConfig {
780
+ json::TracingJSON parsedConfig = [&]() -> json::ParsedConfig {
781
781
if (!m_buffered_dataset_config.has_value ())
782
782
{
783
783
// we are only interested in these values from the global config
@@ -815,11 +815,11 @@ void ADIOS2IOHandlerImpl::createDataset(
815
815
816
816
Shape arrayShape = Shape::GlobalArray;
817
817
[&]() {
818
- if (!config .json ().contains (" adios2" ))
818
+ if (!parsedConfig .json ().contains (" adios2" ))
819
819
{
820
820
return ;
821
821
};
822
- json::TracingJSON adios2Config (config [" adios2" ]);
822
+ json::TracingJSON adios2Config (parsedConfig [" adios2" ]);
823
823
auto datasetOperators = getOperators (adios2Config);
824
824
if (datasetOperators.has_value ())
825
825
{
@@ -869,7 +869,7 @@ void ADIOS2IOHandlerImpl::createDataset(
869
869
#endif
870
870
871
871
parameters.warnUnusedParameters (
872
- config ,
872
+ parsedConfig ,
873
873
" adios2" ,
874
874
" Warning: parts of the backend configuration for ADIOS2 dataset '" +
875
875
varName + " ' remain unused:\n " );
You can’t perform that action at this time.
0 commit comments