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;
}
}

View File

@ -97,7 +97,7 @@ int main(string[] args)
sw.stop();
Log.info("Startup completed in ", sw.peek().to!("msecs", float), " milliseconds");
// No relative paths
// No relative paths
version (Posix) chdir("/");
serverLoop: while (true)