C
chuan
#ifndef _GLUEBALL_H
#define _GLUEBALL_H
#include <complex>
static const complex<int> gamma5[16] =
{ 0,0,1,0, 0,0,0,1, 1,0,0,0, 0,1,0,0 };
#endif
I have error during compiling:
error: expected constructor, destructor, or type conversions before
`<' token
why????
#define _GLUEBALL_H
#include <complex>
static const complex<int> gamma5[16] =
{ 0,0,1,0, 0,0,0,1, 1,0,0,0, 0,1,0,0 };
#endif
I have error during compiling:
error: expected constructor, destructor, or type conversions before
`<' token
why????