File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -369,7 +369,7 @@ template<
369369> Configuration
370370
371371``` cpp
372- #define MPH 3'0'0 // Current library version (SemVer)
372+ #define MPH 3'0'1 // Current library version (SemVer)
373373#define MPH_PAGE_SIZE // [ default: not defined]
374374 // If defined safe memcpy will be used for string-like
375375 // keys if the read is close to the page boundry (4096u)
@@ -502,7 +502,7 @@ template<
502502 CPMAddPackage(
503503 Name mph
504504 GITHUB_REPOSITORY boost-ext/mph
505- GIT_TAG v3.0.0
505+ GIT_TAG v3.0.1
506506 )
507507 add_library(mph INTERFACE)
508508 target_include_directories(mph SYSTEM INTERFACE ${mph_SOURCE_DIR})
Original file line number Diff line number Diff line change 66// http://www.boost.org/LICENSE_1_0.txt)
77//
88#ifndef MPH
9- #define MPH 3'0'0 // SemVer
9+ #define MPH 3'0'1 // SemVer
1010#pragma GCC system_header
1111
1212/**
1313 * [Minimal] Static perfect hash library (https://github.com/boost-ext/mph)
1414 */
15- namespace mph::inline v3_0_0 {
15+ namespace mph::inline v3_0_1 {
1616using u8 = __UINT8_TYPE__;
1717using u16 = __UINT16_TYPE__;
1818using u32 = __UINT32_TYPE__;
You can’t perform that action at this time.
0 commit comments