diff options
author | Mikael Ronstrom <mikael.ronstrom@oracle.com> | 2011-05-04 10:42:48 +0200 |
---|---|---|
committer | Mikael Ronstrom <mikael.ronstrom@oracle.com> | 2011-05-04 10:42:48 +0200 |
commit | 287df27ce0c0badb6c9f17bf1b70541bd77b0283 (patch) | |
tree | db185cecee65d0c3df0dc99ea2c99508fd0525a8 /include | |
parent | d5d966a6b9fa69303884c78fac1fc51b98571643 (diff) | |
download | mariadb-git-287df27ce0c0badb6c9f17bf1b70541bd77b0283.tar.gz |
Make MY_ALIGNED usable to define alignment of data structures
Diffstat (limited to 'include')
-rw-r--r-- | include/my_compiler.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/my_compiler.h b/include/my_compiler.h index 5f898621159..e55346d62fd 100644 --- a/include/my_compiler.h +++ b/include/my_compiler.h @@ -140,6 +140,14 @@ struct my_aligned_storage #endif /* __cplusplus */ +# if defined(MY_ALIGNED) +/* + Make sure MY_ALIGNED can be used also on platforms where we don't + have a way of aligning data structures. +*/ +#define MY_ALIGNED(size) +#endif + #include <my_attribute.h> #endif /* MY_COMPILER_INCLUDED */ |