pbr-cpp-memory-pool 1.1.2
Fixed-block-size O(1) memory pool — C++17 with an ANSI C public surface
Loading...
Searching...
No Matches
version.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2026 Daniel Polo
3
4#ifndef IT_D4NP_MEMORYPOOL_VERSION_HPP_
5#define IT_D4NP_MEMORYPOOL_VERSION_HPP_
6
17namespace it::d4np::memorypool {
18
20inline constexpr unsigned PBR_MEMORY_POOL_VERSION_MAJOR = 1;
21
23inline constexpr unsigned PBR_MEMORY_POOL_VERSION_MINOR = 1;
24
26inline constexpr unsigned PBR_MEMORY_POOL_VERSION_PATCH = 2;
27
29inline constexpr const char* PBR_MEMORY_POOL_VERSION_STRING = "1.1.2";
30
31} // namespace it::d4np::memorypool
32
33#endif // IT_D4NP_MEMORYPOOL_VERSION_HPP_
constexpr unsigned PBR_MEMORY_POOL_VERSION_MAJOR
Major version component (incremented for breaking changes post-1.0).
Definition version.hpp:20
constexpr unsigned PBR_MEMORY_POOL_VERSION_MINOR
Minor version component (incremented with each closed milestone pre-1.0).
Definition version.hpp:23
constexpr const char * PBR_MEMORY_POOL_VERSION_STRING
Pre-formatted version string, kept in lockstep with the components above.
Definition version.hpp:29
constexpr unsigned PBR_MEMORY_POOL_VERSION_PATCH
Patch version component (incremented for hotfixes between milestones).
Definition version.hpp:26