From 26bc7b55a0a466393fb59be045cf8031592ccecf Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org>
Date: Thu, 28 Feb 2013 10:31:56 +0100
Subject: [PATCH] Remove obsolete workaround for Octave 3.2
---
preprocessor/ModFile.cc | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/preprocessor/ModFile.cc b/preprocessor/ModFile.cc
index 830b446e89..47371866cf 100644
--- a/preprocessor/ModFile.cc
+++ b/preprocessor/ModFile.cc
@@ -464,11 +464,7 @@ ModFile::writeOutputFiles(const string &basename, bool clear_all, bool no_log, b
mOutputFile << "warning off" << endl; // This will be executed *after* function warning_config()
if (clear_all)
- {
- mOutputFile << "clear all" << endl
- // this is a work-around for a bug in Octave 3.2
- << "clear global" << endl;
- }
+ mOutputFile << "clear all" << endl;
mOutputFile << "tic;" << endl
<< "global M_ oo_ options_ ys0_ ex0_ estimation_info" << endl
--
GitLab