Top "Circular-dependency" questions

circular dependency is a relation between two or more modules which either directly or indirectly depend on each other to function properly.

Detecting circular imports

I'm working with a project that contains about 30 unique modules. It wasn't designed too well, so it's common that I …

python circular-dependency
Circular Dependency in C++

The facts: I have two predominant classes: Manager and Specialist. There are several different types of Specialists. Specialists often require …

c++ design-patterns circular-dependency
Circular C++ Header Includes

In a project I have 2 classes: // mainw.h #include "IFr.h" ... class mainw { public: static IFr ifr; static CSize=100; ... }; // IFr.…

c++ static include circular-dependency
How to solve circular dependency in Require.js?

Basically, the idea is that "sub" module creates an object, and that object should be part of a utilities library …

javascript requirejs amd circular-dependency commonjs
Injecting $http into angular factory($exceptionHandler) results in a Circular dependency

When I try inject $http into an overridden factory I get the error: Uncaught Error: [$injector:cdep] Circular dependency found: $…

angularjs circular-dependency
forward declaration with vector of class type - pointer to incomplete class type not allowed

I have two classes, foo and bar. foo.h #includes bar.h and contains a std::vector of pointers to …

c++ circular-dependency forward-declaration