Skip to content

Commit 676579c

Browse files
committed
⬆️ v2.0.3
1 parent 298111b commit 676579c

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 void for_each(auto fn);
247247
> Configuration
248248
249249
```cpp
250-
#define MP 2'0'2 // Current library version (SemVer)
250+
#define MP 2'0'3 // Current library version (SemVer)
251251
#define MP_SIZE 1024 // Max number of meta types (compilation times optimization)
252252
```
253253

@@ -288,7 +288,7 @@ constexpr void for_each(auto fn);
288288
CPMAddPackage(
289289
Name mp
290290
GITHUB_REPOSITORY boost-ext/mp
291-
GIT_TAG v2.0.2
291+
GIT_TAG v2.0.3
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'2 // SemVer
9+
#define MP 2'0'3 // SemVer
1010
#if defined(__GNUC__)
1111
#pragma GCC system_header
1212
#endif
@@ -18,7 +18,7 @@
1818
/**
1919
* ~~Template~~ Meta-Programming library (https://github.com/boost-ext/mp)
2020
*/
21-
namespace mp::inline v2_0_2 {
21+
namespace mp::inline v2_0_3 {
2222
using size_t = decltype(sizeof(int));
2323

2424
namespace utility {

0 commit comments

Comments
 (0)