| 1 | |
|---|---|
| 2 | |
| 3 | #ifndef PROFILE_TEST_H |
| 4 | #define PROFILE_TEST_H |
| 5 | |
| 6 | #if defined(_MSC_VER) |
| 7 | # define ALIGNED(x) __declspec(align(x)) |
| 8 | #else // _MSC_VER |
| 9 | # define ALIGNED(x) __attribute__((aligned(x))) |
| 10 | #endif |
| 11 | |
| 12 | #endif // PROFILE_TEST_H |
| 13 |
| 1 | |
|---|---|
| 2 | |
| 3 | #ifndef PROFILE_TEST_H |
| 4 | #define PROFILE_TEST_H |
| 5 | |
| 6 | #if defined(_MSC_VER) |
| 7 | # define ALIGNED(x) __declspec(align(x)) |
| 8 | #else // _MSC_VER |
| 9 | # define ALIGNED(x) __attribute__((aligned(x))) |
| 10 | #endif |
| 11 | |
| 12 | #endif // PROFILE_TEST_H |
| 13 |