Thread: Error Question...

  1. #1
    Work in Progress..... Jaken Veina's Avatar
    Join Date
    Mar 2005
    Location
    Missouri. Go Imos Pizza!
    Posts
    256

    Error Question...

    Could someone explain the "dependency dropped" error, or redirect me to an explanation. I use Dev-C++ by the way.
    Code:
    void function(void)
     {
      function();
     }

  2. #2
    Just Lurking Dave_Sinkula's Avatar
    Join Date
    Oct 2002
    Posts
    5,005
    Is it "circular dependency dropped"?
    Code:
    /* a.h */
    #include "b.h"
    Code:
    /* b.h */
    #include "a.h"
    7. It is easier to write an incorrect program than understand a correct one.
    40. There are two ways to write error-free programs; only the third one works.*

  3. #3
    Work in Progress..... Jaken Veina's Avatar
    Join Date
    Mar 2005
    Location
    Missouri. Go Imos Pizza!
    Posts
    256
    Ahh. No it isn't circular dependency, but I did have some other problems regarding how I included the headers in the library I'm working on.
    Code:
    void function(void)
     {
      function();
     }

Popular pages Recent additions subscribe to a feed