13 lines · c
1 2 3#ifndef PROFILE_TEST_H4#define PROFILE_TEST_H5 6#if defined(_MSC_VER)7# define ALIGNED(x) __declspec(align(x))8#else // _MSC_VER9# define ALIGNED(x) __attribute__((aligned(x)))10#endif11 12#endif // PROFILE_TEST_H13 1 2 3#ifndef PROFILE_TEST_H4#define PROFILE_TEST_H5 6#if defined(_MSC_VER)7# define ALIGNED(x) __declspec(align(x))8#else // _MSC_VER9# define ALIGNED(x) __attribute__((aligned(x)))10#endif11 12#endif // PROFILE_TEST_H13