Remove unused parametr

This commit is contained in:
Hackerpilot 2014-08-11 12:04:10 -07:00
parent 054ddfbf39
commit ee80955aab
1 changed files with 2 additions and 2 deletions

View File

@ -522,11 +522,11 @@ private:
} }
} }
symbol.acSymbol.callTip = formatCallTip(returnType, functionName, symbol.acSymbol.callTip = formatCallTip(returnType, functionName,
parameters, doc); parameters);
} }
string formatCallTip(const Type returnType, string name, string formatCallTip(const Type returnType, string name,
const Parameters parameters, string doc = null) const Parameters parameters)
{ {
QuickAllocator!1024 q; QuickAllocator!1024 q;
auto app = Appender!(char, typeof(q), 1024)(q); auto app = Appender!(char, typeof(q), 1024)(q);