Skip to content

Commit ec01320

Browse files
committed
⬆️ v2.0.4
1 parent e811fc6 commit ec01320

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ constexpr auto for_each(auto fn);
247247
> Configuration
248248
249249
```cpp
250-
#define MP 2'0'3 // Current library version (SemVer)
250+
#define MP 2'0'4 // Current library version (SemVer)
251251
#define MP_SIZE 1024 // Max number of meta types (compilation times optimization)
252252
```
253253

@@ -288,7 +288,7 @@ constexpr auto for_each(auto fn);
288288
CPMAddPackage(
289289
Name mp
290290
GITHUB_REPOSITORY boost-ext/mp
291-
GIT_TAG v2.0.3
291+
GIT_TAG v2.0.4
292292
)
293293
add_library(mp INTERFACE)
294294
target_include_directories(mp SYSTEM INTERFACE ${mp_SOURCE_DIR})

mp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// http://www.boost.org/LICENSE_1_0.txt)
77
//
88
#ifndef MP
9-
#define MP 2'0'3 // SemVer
9+
#define MP 2'0'4 // SemVer
1010

1111
#if defined(__GNUC__)
1212
#pragma GCC system_header
@@ -19,7 +19,7 @@
1919
/**
2020
* ~~Template~~ Meta-Programming library (https://github.com/boost-ext/mp)
2121
*/
22-
namespace mp::inline v2_0_3 {
22+
namespace mp::inline v2_0_4 {
2323
using size_t = decltype(sizeof(int));
2424

2525
namespace utility {

0 commit comments

Comments
 (0)