From 3b13d04c76dafbb1c888f9ae958a5d015c31d691 Mon Sep 17 00:00:00 2001
From: Chuck Atkins <chuck.atkins@kitware.com>
Date: Thu, 30 Mar 2017 20:14:45 -0400
Subject: [PATCH] Fix bad constructor call in example

---
 examples/hello/bpWriter/helloBPWriter_nompi.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/hello/bpWriter/helloBPWriter_nompi.cpp b/examples/hello/bpWriter/helloBPWriter_nompi.cpp
index eb282251d..edb09e086 100644
--- a/examples/hello/bpWriter/helloBPWriter_nompi.cpp
+++ b/examples/hello/bpWriter/helloBPWriter_nompi.cpp
@@ -16,7 +16,7 @@
 int main(int argc, char *argv[])
 {
   const bool adiosDebug = true;
-  adios::ADIOS adios(adiosDebug);
+  adios::ADIOS adios(adios::Verbose::WARN, adiosDebug);
 
   // Application variable
   std::vector<double> myDoubles = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
-- 
GitLab