mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
|
From fdb93d3e9d447b9dd6ce5c77aca18396cf9b6aa3 Mon Sep 17 00:00:00 2001
|
||
|
From: Vicente Bolea <vicente.bolea@kitware.com>
|
||
|
Date: Mon, 3 Apr 2023 12:58:58 -0400
|
||
|
Subject: [PATCH] Update IO/ADIOS2/vtkADIOS2CoreImageReader.cxx
|
||
|
|
||
|
---
|
||
|
IO/ADIOS2/vtkADIOS2CoreImageReader.cxx | 4 ++--
|
||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/IO/ADIOS2/vtkADIOS2CoreImageReader.cxx b/IO/ADIOS2/vtkADIOS2CoreImageReader.cxx
|
||
|
index 5d58905a881..3ce039345a9 100644
|
||
|
--- a/IO/ADIOS2/vtkADIOS2CoreImageReader.cxx
|
||
|
+++ b/IO/ADIOS2/vtkADIOS2CoreImageReader.cxx
|
||
|
@@ -361,12 +361,12 @@ bool vtkADIOS2CoreImageReader::OpenAndReadMetaData()
|
||
|
vtkMPICommunicator* comm =
|
||
|
static_cast<vtkMPICommunicator*>(this->Controller->GetCommunicator());
|
||
|
|
||
|
- this->Impl->Adios.reset(new adios2::ADIOS(*comm->GetMPIComm()->GetHandle(), adios2::DebugON));
|
||
|
+ this->Impl->Adios.reset(new adios2::ADIOS(*comm->GetMPIComm()->GetHandle()));
|
||
|
#else
|
||
|
// Make sure the ADIOS subsystem is initialized before processing any
|
||
|
// sort of request.
|
||
|
|
||
|
- this->Impl->Adios.reset(new adios2::ADIOS(adios2::DebugON));
|
||
|
+ this->Impl->Adios.reset(new adios2::ADIOS());
|
||
|
// Before processing any request, read the meta data first
|
||
|
#endif
|
||
|
}
|
||
|
--
|
||
|
GitLab
|
||
|
|