Possible Duplicate:
What does the restrict keyword mean in C++?
I'm trying to install QMCPACK on OS X 10.8.2 and I'm getting a lot of errors like this:
bspline_base.h:95:17: error: expected ';' at end of declaration list
void *restrict coefs;
^
;
I am unfamiliar with the restrict keyword but I feel like this may be some other kind of problem, because this is a popular code that compiles for other people.
Here is the full context of that code:
typedef struct
{
spline_code sp_code;
type_code t_code;
void *restrict coefs;
} Bspline;