On 11/8/05, Djekic Dusan wrote: > > a.h > int a( ) { }; > Hi. I have encountered this problem too. Explicitly writing "inline int a() {}" instead of your piece of code helped. Or , if "a" will be a big function (not intended for inlining), you will have to move it's definition into a.cpp, and in a.h there will be only declaration. Regards, Dima.