From 90f1db49ba9c98472cf5c53f7138b5aebe566e90 Mon Sep 17 00:00:00 2001 From: William F Godoy <williamfgc@yahoo.com> Date: Wed, 7 Jun 2017 11:30:16 -0400 Subject: [PATCH] Removed extra variable in hello example --- examples/hello/bpWriter/helloBPWriter_nompi.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/examples/hello/bpWriter/helloBPWriter_nompi.cpp b/examples/hello/bpWriter/helloBPWriter_nompi.cpp index 13ca0a674..b9ba169e3 100644 --- a/examples/hello/bpWriter/helloBPWriter_nompi.cpp +++ b/examples/hello/bpWriter/helloBPWriter_nompi.cpp @@ -35,10 +35,6 @@ int main(int argc, char *argv[]) adios::Variable<float> &bpFloats = bpIO.DefineVariable<float>( "bpFloats", {}, {}, {Nx}, adios::ConstantDims); - /** global single value variable: name */ - adios::Variable<unsigned int> &bpTimeStep = - bpIO.DefineVariable<unsigned int>("timeStep"); - /** Engine derived class, spawned to start IO operations */ auto bpWriter = bpIO.Open("myVector.bp", adios::OpenMode::Write); -- GitLab