Skip to content

Commit

Permalink
⬆️ [v3.0.1]
Browse files Browse the repository at this point in the history
  • Loading branch information
kris-jusiak committed May 29, 2024
1 parent 5eb4a8f commit 016b761
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 @@ -369,7 +369,7 @@ template<
> Configuration
```cpp
#define MPH 3'0'0 // Current library version (SemVer)
#define MPH 3'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 close to the page boundry (4096u)
Expand Down Expand Up @@ -502,7 +502,7 @@ template<
CPMAddPackage(
Name mph
GITHUB_REPOSITORY boost-ext/mph
GIT_TAG v3.0.0
GIT_TAG v3.0.1
)
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 3'0'0 // SemVer
#define MPH 3'0'1 // SemVer
#pragma GCC system_header

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

0 comments on commit 016b761

Please sign in to comment.