12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #ifndef CEREAL_VERSION_HPP_
- #define CEREAL_VERSION_HPP_
- #define CEREAL_VERSION_MAJOR 1
- #define CEREAL_VERSION_MINOR 3
- #define CEREAL_VERSION_PATCH 2
- #define CEREAL_VERSION (CEREAL_VERSION_MAJOR * 10000 \
- + CEREAL_VERSION_MINOR * 100 \
- + CEREAL_VERSION_PATCH)
- #endif
|