I have a C code written. When I compile it on Linux then in the header file it says the following error: storage class specified for parameter i32 , i8 and so
storage class specified for parameter i32 , i8
I had similar issue, while error was missing the storage class name in static assignment. E.g.:
.h: class MyClass { static const int something; } .cpp: const int something = 1; // returns error const int MyClass::something = 1; // OK