Copy path field

This commit is contained in:
Hackerpilot 2014-02-09 16:02:04 -08:00
parent f52cb6ad2a
commit 821ecf5105
2 changed files with 2 additions and 1 deletions

View File

@ -49,6 +49,7 @@ private struct CacheEntry
void opAssign(ref const CacheEntry other)
{
this.symbols = cast(typeof(symbols)) other.symbols;
this.path = other.path;
this.modificationTime = other.modificationTime;
}
}