Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

GCC 4.6.1 reports strange compile error on a pretty simple code:

1113:2: error: reference to DIR is ambiguous
/usr/include/dirent.h:128:28: error: candidates are: typedef struct __dirstream DIR

Here is the code:

#include <sys/types.h>
#include <libgen.h>
#include <dirent.h>

// ...

DIR* dir; // <- line 1113
dir = opendir(usedFolderName.c_str());
if ( dir == NULL )
{
    // handle error
}

It is compiled as C++, so it is not because of 'struct DIR'

share|improve this question
1  
I cannot reproduce it on a different version of the compiler - here is the link to ideone where it compiles fine. Try reproducing it in a smaller example. – dasblinkenlight Jun 9 '12 at 11:10
I tried to replace DIR* to __dirstream* (as defined in dirent.h) and everything become ok. wtf?.. – Yuri S. Cherkasov Jun 9 '12 at 11:39
FIXED. There was a name conflict. Some clever man created DIR as a enum value :) – Yuri S. Cherkasov Jun 9 '12 at 13:02
I guess you should be able to delete the question now :) – dasblinkenlight Jun 9 '12 at 13:05

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.