Skip to content
Snippets Groups Projects
Commit 91d95336 authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Fixed bug (uninitialized first output argument).

parent 70fcfb8f
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,7 @@ function [l,c,d] = isint(a) ...@@ -29,7 +29,7 @@ function [l,c,d] = isint(a)
% along with Dynare. If not, see <http://www.gnu.org/licenses/>. % along with Dynare. If not, see <http://www.gnu.org/licenses/>.
if ~isnumeric(a) if ~isnumeric(a)
b = false; l = false;
if nargout>1 if nargout>1
c = []; c = [];
d = []; d = [];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment