Open spacesinmotion opened 4 years ago
Hey,
After trying to embedding tisp into c++ code I got warnings of kind:
tisp.h:75:21: error: conflicting declaration ‘typedef struct Tsp* Tsp’ 75 | typedef struct Tsp *Tsp; | ^~~ tisp.h:75:16: note: previous declaration as ‘struct Tsp’ 75 | typedef struct Tsp *Tsp;
reason is the reuse of the structure name as type name.
After that changes embedding was possible...
Hey,
After trying to embedding tisp into c++ code I got warnings of kind:
reason is the reuse of the structure name as type name.
After that changes embedding was possible...