Skip to content

Instantly share code, notes, and snippets.

@njlr
Created June 2, 2017 17:31
Show Gist options
  • Save njlr/f3437cef2a67ef4762daec9dfbea4d36 to your computer and use it in GitHub Desktop.
Save njlr/f3437cef2a67ef4762daec9dfbea4d36 to your computer and use it in GitHub Desktop.
#define CREATE_VECTOR(D) \
struct Vector_##D {\
static constexpr int N = D;\
int data[N];\
\
Vector_##D (Vector_##D const& v) {\
for(int i=0; i<N ; ++i) {\
data[i] = v[i];\
}\
}\
\
// etc...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment