Re: Cyclic dependency between module A and B

2019-04-11 Thread Steven Schveighoffer via Digitalmars-d-learn
On 4/10/19 2:52 PM, kdevel wrote: Recently (before refactoring) my application complained right after invocation:    object.Error@src/rt/minfo.d(371): Cyclic dependency between module Filebrowser and App    Filebrowser* ->    App* ->    Filebrowser* Is it possible to detect this

Cyclic dependency between module A and B

2019-04-10 Thread kdevel via Digitalmars-d-learn
Recently (before refactoring) my application complained right after invocation: object.Error@src/rt/minfo.d(371): Cyclic dependency between module Filebrowser and App Filebrowser* -> App* -> Filebrowser* Is it possible to detect this dependency before the program is started?