Skip to content

Commit 6701dd3

Browse files
committed
CI fixes
1 parent 3861aec commit 6701dd3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/IO/ADIOS/ADIOS2IOHandler.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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");

0 commit comments

Comments
 (0)