From b99e68d7b79efe2911c1d6bb0885042c3d6247ca Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Fri, 3 Apr 2015 16:21:54 +0200 Subject: [PATCH] preprocessor: update warning message for missing varexos --- preprocessor/ModFile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preprocessor/ModFile.cc b/preprocessor/ModFile.cc index f21f8f622..570ad72ad 100644 --- a/preprocessor/ModFile.cc +++ b/preprocessor/ModFile.cc @@ -300,7 +300,7 @@ ModFile::checkPass() if (++it != unusedExo.end()) warnings << ", "; } - warnings << ") are declared but not used in the model. This may lead to crashes or unexpected behaviour." << endl; + warnings << ") are declared but not used in the model. We have removed them and will attempt to continue..." << endl; } }