Fixed issue #38

This commit is contained in:
Hackerpilot 2013-03-26 13:26:27 -07:00
parent 9d6b96135e
commit 75a802d51a
1 changed files with 2 additions and 2 deletions

View File

@ -220,7 +220,7 @@ public:
app.put(format("%s\t%s\t%d;\"\ts", name, fileName, line));
foreach (Function f; functions)
{
app.put(format("%s\t%s\t%d;\"\tf\tarity:%d\tstruct:", f.name, fileName,
app.put(format("%s\t%s\t%d;\"\tf\tarity:%d\tstruct:%s", f.name, fileName,
f.line, f.parameters.length, name));
}
foreach (Variable v; variables)
@ -333,7 +333,7 @@ public:
array(baseClasses.joiner(","))));
foreach (Function f; functions)
{
app.put(format("%s\t%s\t%d;\"\tf\tarity:%d\tstruct:", f.name, fileName,
app.put(format("%s\t%s\t%d;\"\tf\tarity:%d\tstruct:%s", f.name, fileName,
f.line, f.parameters.length, name));
}
foreach (Variable v; variables)