Mentions légales du service

Skip to content
Snippets Groups Projects
Commit f6ba6b16 authored by hhakim's avatar hhakim
Browse files

Remove from matlab doxydoc the function argument direction modifier: 'in'.

parent 878f401f
No related branches found
No related tags found
No related merge requests found
......@@ -159,10 +159,11 @@ foreach $my_fic (@listeFic)
$output = $declTypeDef.$output;
$declTypeDef = "";
}
$arguments =~ s/,/,in /g;
#$arguments =~ s/,/,in /g;
$arguments =~ s/~/ignoredArg/g;
$arguments = "in $arguments";
if ($arguments =~ /^in $/)
#$arguments = "in $arguments";
# if ($arguments =~ /^in $/)
if($arguments =~ /^ $/)
{
$arguments = "";
}
......@@ -174,10 +175,11 @@ foreach $my_fic (@listeFic)
{
$functionName = $2;
$arguments = $3;
$arguments =~ s/,/,in /g;
#$arguments =~ s/,/,in /g;
$arguments =~ s/~/ignoredArg/g;
$arguments = "in $arguments";
if ($arguments =~ /^in $/)
#$arguments = "in $arguments";
if($arguments =~ /^ $/)
# if ($arguments =~ /^in $/)
{
$arguments = "";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment