I believe this is a bug. When I create a body for class' function
#define DLLEXPORT __declspec( dllexport )
DLLEXPORT static void Function(double x);
I get
DLLEXPORT void Leviathan::MMath::Function(double x){
}
There are excess spaces between DLLEXPORT and function type.
It seems that when static (and possible other keywords) are removed
the spaces are left behind.
Could somebody fix this?
thanks