I have come across this prpblem twice now when trying to link third party libraries to my program. All the links are correct however I receive the following very strange error:
"declaration does not declare anything)"
This refers to the following line of code in a header file belonging to the third party library:
virtual Int_t Fill(Axis_t x);
Now I believe that this line is declaring a virtual method called Fill which takes an object of type Axis_t and returns an object of type Int_t. I see no problem with the syntax or declaration.
I wonder if I am possible ommitting to include a header file which might solve this problem.
On the other hand has anybody come across anything similar which might help?
Tristan
