MessagePack for C
versions.h
Go to the documentation of this file.
1 /*
2 Copyright Charly Chevalier 2015
3 Copyright Joel Falcou 2015
4 Distributed under the Boost Software License, Version 1.0.
5 (See accompanying file LICENSE_1_0.txt or copy at
6 http://www.boost.org/LICENSE_1_0.txt)
7 */
8 
9 #ifndef MSGPACK_PREDEF_HARDWARE_SIMD_ARM_VERSIONS_H
10 #define MSGPACK_PREDEF_HARDWARE_SIMD_ARM_VERSIONS_H
11 
13 
14 /*`
15  Those defines represent ARM SIMD extensions versions.
16 
17  [note You *MUST* compare them with the predef `MSGPACK_HW_SIMD_ARM`.]
18  */
19 
20 // ---------------------------------
21 
22 /*`
23  [heading `MSGPACK_HW_SIMD_ARM_NEON_VERSION`]
24 
25  The [@https://en.wikipedia.org/wiki/ARM_architecture#Advanced_SIMD_.28NEON.29 NEON]
26  ARM extension version number.
27 
28  Version number is: *1.0.0*.
29  */
30 #define MSGPACK_HW_SIMD_ARM_NEON_VERSION MSGPACK_VERSION_NUMBER(1, 0, 0)
31 
32 #endif