diff --git a/README.md b/README.md index b8aa3d3..e0dec45 100644 --- a/README.md +++ b/README.md @@ -409,7 +409,7 @@ template{}> > 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) ``` @@ -547,7 +547,7 @@ template{}> 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}) diff --git a/mph b/mph index 273dc10..569bad9 100644 --- a/mph +++ b/mph @@ -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__;