Closed dyadav7 closed 2 years ago
The below code gives a warning :
[1894] WARN unresolved _myunion
As compiler does not give a warning - there is no need for this warning for _myunion. Is there a way to suppres Warning ?
struct myStruct { char* name; union _myunion { int a; float b; } u; };
Linux
No response
Looks like you could set CppHeaderParser.CppHeaderParser.print_warnings to 0.
CppHeaderParser.CppHeaderParser.print_warnings
It's a stupid warning though, I'd accept a PR fixing it.
Problem description
The below code gives a warning :
As compiler does not give a warning - there is no need for this warning for _myunion. Is there a way to suppres Warning ?
Operating System
Linux
Installed Python Packages
No response
Reproducible example code
No response