Skip to content

Commit

Permalink
⬆️ v5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kris-jusiak committed Jul 7, 2024
1 parent a704a4d commit 2acb16f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ inline constexpr auto find =
> Configuration
```cpp
#define MPH 5'0'0 // Current library version (SemVer)
#define MPH 5'0'1 // Current library version (SemVer)
#define MPH_PAGE_SIZE // [default: not defined]
// If defined safe memcpy will be used for string-like
// keys if the read is approaching the page boundry (4096u)
Expand Down
4 changes: 2 additions & 2 deletions mph
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef MPH
#define MPH 5'0'0 // SemVer
#define MPH 5'0'1 // SemVer
#pragma GCC system_header

#if __has_include(<experimental/simd>)
Expand All @@ -16,7 +16,7 @@
/**
* [Minimal] Static perfect hash library (https://github.com/boost-ext/mph)
*/
namespace mph::inline v5_0_0 {
namespace mph::inline v5_0_1 {
using i8 = __INT8_TYPE__;
using u8 = __UINT8_TYPE__;
using i16 = __INT16_TYPE__;
Expand Down

0 comments on commit 2acb16f

Please sign in to comment.