d5ecf4d Release v2.10.2 7c04564 Update embedded protozero to version 1.4.4. e209d81 Write code for 64bit systems, so it compiles on 32bit w/o warning. 640217c Fix buffer overflow. 8b4620f Release v2.10.1 38bf3ab Update protozero to 1.4.3. f81b3c6 Fix IdSet on 32 bit. 5ff4753 Workaround so the test works on 32bit systems. 7542694 Include our endian.hpp before using the endianness test macros. git-subtree-dir: third_party/libosmium git-subtree-split: d5ecf4df90e2995c816886d2a002c3d3de7062ee
36 lines
920 B
C++
36 lines
920 B
C++
#ifndef PROTOZERO_VERSION_HPP
|
|
#define PROTOZERO_VERSION_HPP
|
|
|
|
/*****************************************************************************
|
|
|
|
protozero - Minimalistic protocol buffer decoder and encoder in C++.
|
|
|
|
This file is from https://github.com/mapbox/protozero where you can find more
|
|
documentation.
|
|
|
|
*****************************************************************************/
|
|
|
|
/**
|
|
* @file version.hpp
|
|
*
|
|
* @brief Contains macros defining the protozero version.
|
|
*/
|
|
|
|
/// The major version number
|
|
#define PROTOZERO_VERSION_MAJOR 1
|
|
|
|
/// The minor version number
|
|
#define PROTOZERO_VERSION_MINOR 4
|
|
|
|
/// The patch number
|
|
#define PROTOZERO_VERSION_PATCH 4
|
|
|
|
/// The complete version number
|
|
#define PROTOZERO_VERSION_CODE (PROTOZERO_VERSION_MAJOR * 10000 + PROTOZERO_VERSION_MINOR * 100 + PROTOZERO_VERSION_PATCH)
|
|
|
|
/// Version number as string
|
|
#define PROTOZERO_VERSION_STRING "1.4.4"
|
|
|
|
|
|
#endif // PROTOZERO_VERSION_HPP
|