From ff322ba27bd0f698fe57c1c676a043e11d7917e0 Mon Sep 17 00:00:00 2001 From: nojhan Date: Fri, 19 Apr 2019 06:52:38 +0200 Subject: [PATCH] fix missing API update - tutorial/Lesson3 was still using the old eoStdoutMonitor interface --- eo/tutorial/Lesson3/exercise3.1.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo/tutorial/Lesson3/exercise3.1.cpp b/eo/tutorial/Lesson3/exercise3.1.cpp index dc37479d4..d178941c5 100644 --- a/eo/tutorial/Lesson3/exercise3.1.cpp +++ b/eo/tutorial/Lesson3/exercise3.1.cpp @@ -289,7 +289,7 @@ void main_function(int argc, char **argv) checkpoint.add(fdcStat); // The Stdout monitor will print parameters to the screen ... - eoStdoutMonitor monitor(false); + eoStdoutMonitor monitor; // when called by the checkpoint (i.e. at every generation) checkpoint.add(monitor);