Skip to content

Commit

Permalink
⬆️ v2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kris-jusiak committed May 18, 2024
1 parent 1004a2d commit 169f774
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ template<const auto& kv, config cfg = config<kv>{}>
> Configuration

```cpp
#define MPH 2'4'0 // Current library version (SemVer)
#define MPH 2'5'0 // Current library version (SemVer)
#define MPH_PAGE_SIZE 4096u // If set __builtin_memcpy(data, sizeof(T)) & bzhi(size)
// If not __builtin_memcpy(data, size)
```
Expand Down Expand Up @@ -547,7 +547,7 @@ template<const auto& kv, config cfg = config<kv>{}>
CPMAddPackage(
Name mph
GITHUB_REPOSITORY boost-ext/mph
GIT_TAG v2.4.0
GIT_TAG v2.5.0
)
add_library(mph INTERFACE)
target_include_directories(mph SYSTEM INTERFACE ${mph_SOURCE_DIR})
Expand Down
4 changes: 2 additions & 2 deletions mph
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
// http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef MPH
#define MPH 2'4'0 // SemVer
#define MPH 2'5'0 // SemVer
#pragma GCC system_header

/**
* [Minimal] Perfect hash library (https://github.com/boost-ext/mph)
*/
namespace mph::inline v2_4_0 {
namespace mph::inline v2_5_0 {
using u8 = __UINT8_TYPE__;
using u16 = __UINT16_TYPE__;
using u32 = __UINT32_TYPE__;
Expand Down

0 comments on commit 169f774

Please sign in to comment.