From 39e9bfceeb536ecf36ae75f240f3308994480267 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= Date: Mon, 24 Mar 2014 17:05:58 +0100 Subject: [PATCH] Remove last preprocessor information message. First, the current logic is buggy, because mod_file->use_dll is undefined at this point (mod_file having been deleted above). More fundamentally, the preprocessor is now evolving into something to be used without MATLAB/Octave, so this statement is now inaccurate in some use cases. --- DynareMain2.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/DynareMain2.cc b/DynareMain2.cc index 208f1e40..2f0f30a3 100644 --- a/DynareMain2.cc +++ b/DynareMain2.cc @@ -69,6 +69,4 @@ main2(stringstream &in, string &basename, bool debug, bool clear_all, bool no_tm delete mod_file; cout << "Preprocessing completed." << endl; - if (!mod_file->use_dll) - cout << "Starting MATLAB/Octave computing." << endl; }