Some files didn't get checked in...

This commit is contained in:
Hackerpilot 2014-09-03 05:18:55 +00:00
parent 0783d92e0d
commit c97fca76ee
3 changed files with 3 additions and 3 deletions

View File

@ -123,7 +123,7 @@ public:
auto app = appender!(ACSymbol*[])(); auto app = appender!(ACSymbol*[])();
foreach (part; parts.equalRange(&s)) foreach (part; parts.equalRange(&s))
app.put(part); app.put(part);
foreach (extra; extraSymbols.equalRange(&s)) foreach (extra; aliasThisParts.equalRange(&s))
app.put(extra.getPartsByName(name)); app.put(extra.getPartsByName(name));
foreach (im; parts.equalRange(&p)) foreach (im; parts.equalRange(&p))
foreach (part; im.type.parts.equalRange(&s)) foreach (part; im.type.parts.equalRange(&s))

View File

@ -631,7 +631,7 @@ void setCompletions(T)(ref AutocompleteResponse response,
} }
TTree!(ACSymbol*, true, "a < b", false) parts; TTree!(ACSymbol*, true, "a < b", false) parts;
parts.insert(symbols[0].parts[]); parts.insert(symbols[0].parts[]);
foreach (s; symbols[0].extraSymbols[]) foreach (s; symbols[0].aliasThisParts[])
parts.insert(s.parts[]); parts.insert(s.parts[]);
foreach (s; parts[].filter!(a => a.name !is null foreach (s; parts[].filter!(a => a.name !is null
&& a.name.length > 0 && a.name[0] != '*' && a.name.length > 0 && a.name[0] != '*'

View File

@ -62,7 +62,7 @@ private struct CacheEntry
return path == other.path; return path == other.path;
} }
size_t toHash() const size_t toHash() const nothrow @safe
{ {
import core.internal.hash : hashOf; import core.internal.hash : hashOf;
return hashOf(path); return hashOf(path);