Remove unused parametr
This commit is contained in:
parent
054ddfbf39
commit
ee80955aab
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue