From 475771382906cf0954247bdfb974857b09e41336 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Scylla=29?=
 <stephane.adjemian@univ-lemans.fr>
Date: Tue, 10 Oct 2017 14:37:07 +0200
Subject: [PATCH] Fixed type of first returned argument.

---
 matlab/utilities/general/isint.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/matlab/utilities/general/isint.m b/matlab/utilities/general/isint.m
index c40ef792e..f6ed5a64e 100644
--- a/matlab/utilities/general/isint.m
+++ b/matlab/utilities/general/isint.m
@@ -33,7 +33,7 @@ function [b,c,d] = isint(a)
 % along with Dynare.  If not, see <http://www.gnu.org/licenses/>.
 
 if ~isnumeric(a)
-    b = 0;
+    b = false;
     if nargout>1
         c = [];
         d = [];
-- 
GitLab