profile_test.h 213 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 #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