mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-12-27 10:55:12 +01:00
https://github.com/boostorg/predef.git has been added as a submodule on external/boost/predef. In order to avoid macro name conflicts, replaced "BOOST_" with "MSGPACK_" and "boost/" with "msgpack/" then copy replaced files to include/msgpack. This process is described in CMakeLists.txt. Replaced files are included as a part of msgpack-c. So you don't need to do the converting process each time. Fixed endian checking logic.
16 lines
361 B
C
16 lines
361 B
C
/*
|
|
Copyright Rene Rivera 2014
|
|
Distributed under the Boost Software License, Version 1.0.
|
|
(See accompanying file LICENSE_1_0.txt or copy at
|
|
http://www.boost.org/LICENSE_1_0.txt)
|
|
*/
|
|
|
|
#ifndef MSGPACK_PREDEF_VERSION_H
|
|
#define MSGPACK_PREDEF_VERSION_H
|
|
|
|
#include <msgpack/predef/version_number.h>
|
|
|
|
#define MSGPACK_PREDEF_VERSION MSGPACK_VERSION_NUMBER(1,2,0)
|
|
|
|
#endif
|