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'