You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
213 B

#ifndef PROFILE_TEST_H
#define PROFILE_TEST_H
#if defined(_MSC_VER)
# define ALIGNED(x) __declspec(align(x))
#else // _MSC_VER
# define ALIGNED(x) __attribute__((aligned(x)))
#endif
#endif // PROFILE_TEST_H