From 21149aaf2fff125bcc73665be2c7e022d497518e Mon Sep 17 00:00:00 2001 From: Kai Germaschewski Date: Wed, 21 Aug 2024 22:23:13 -0400 Subject: [PATCH] io/adios2: adapt to changed adios2 API (no more DebugOn) I guess it would have been nicer for ADIOS2 to not break their API some time after 2.4, but it's easy enough to deal with. --- src/kg/include/kg/io/IOAdios2.inl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/kg/include/kg/io/IOAdios2.inl b/src/kg/include/kg/io/IOAdios2.inl index fec1130777..1459b0726d 100644 --- a/src/kg/include/kg/io/IOAdios2.inl +++ b/src/kg/include/kg/io/IOAdios2.inl @@ -4,9 +4,7 @@ namespace kg namespace io { -inline IOAdios2::IOAdios2() - : ad_{"adios2cfg.xml", MPI_COMM_WORLD, adios2::DebugON} -{} +inline IOAdios2::IOAdios2() : ad_{"adios2cfg.xml", MPI_COMM_WORLD} {} inline File IOAdios2::openFile(const std::string& name, const Mode mode, MPI_Comm comm, const std::string& io_name)