Better formatting for import paths

This commit is contained in:
Hackerpilot 2015-06-18 14:41:31 -07:00
parent 43589a136b
commit ce1fdabc02
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ int main(string[] args)
} }
ModuleCache.addImportPaths(importPaths); ModuleCache.addImportPaths(importPaths);
info("Import directories: ", ModuleCache.getImportPaths()); infof("Import directories:\n %-(%s\n %)", ModuleCache.getImportPaths());
ubyte[] buffer = cast(ubyte[]) Mallocator.it.allocate(1024 * 1024 * 4); // 4 megabytes should be enough for anybody... ubyte[] buffer = cast(ubyte[]) Mallocator.it.allocate(1024 * 1024 * 4); // 4 megabytes should be enough for anybody...
scope(exit) Mallocator.it.deallocate(buffer); scope(exit) Mallocator.it.deallocate(buffer);