我正在使用bison和flex构建语法树,我得到了一个我不理解的不兼容的指针类型。错误是:
mycompiler.y:89:5: warning: passing argument 1 of ‘addSymbolToTable’ from incompatible pointer type [enabled by default]
symtree.h:57:15: note: expected ‘struct symTableNode *’ but argument is of type ‘struct symTableNode *’
我不明白为什么当两个结构都属于同一类型时它会发出警告。
这是头文件:
typedef struct symTable {
varType symbolType; /* Type of Symbol (char,int,array) */
int intValue;
char* charValue;
int size; /* Size of array. Else -1 */
char* id; /* Variable id (name) */
int symDefined;
struct symTable *next;
} symTableNode;
symTableNode* addSymbolToTable(symTableNode* table, varType Type, int intVal, char* charVal, int s ize, char* id);
valType只是一个typedef的枚举。
这是我的flex文件中的行:
multparm_types:type ID { addSymbolToTable(globalScope->symbolTable,$1,0,0,0,$2); }
类型和ID声明如下:
%type <valType> type
%token <name> ID
%union {
char *token;
struct symTableNode* symbol;
char* name;
int valType;
};
答案 0 :(得分:4)
您已定义typedef struct symTable { ... } symTableNode
,这种类型可称为struct symTable
或symTableNode
。 struct symTableNode
是一种不同的类型,未定义。 struct symTableNode*
是合法的,因为可以使用指向不完整类型的指针,但它可能不是你的意思。