File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ constexpr auto for_each(auto fn);
247
247
> Configuration
248
248
249
249
```cpp
250
- #define MP 2'0'3 // Current library version (SemVer)
250
+ #define MP 2'0'4 // Current library version (SemVer)
251
251
#define MP_SIZE 1024 // Max number of meta types (compilation times optimization)
252
252
```
253
253
@@ -288,7 +288,7 @@ constexpr auto for_each(auto fn);
288
288
CPMAddPackage(
289
289
Name mp
290
290
GITHUB_REPOSITORY boost-ext/mp
291
- GIT_TAG v2.0.3
291
+ GIT_TAG v2.0.4
292
292
)
293
293
add_library(mp INTERFACE)
294
294
target_include_directories(mp SYSTEM INTERFACE ${mp_SOURCE_DIR})
Original file line number Diff line number Diff line change 6
6
// http://www.boost.org/LICENSE_1_0.txt)
7
7
//
8
8
#ifndef MP
9
- #define MP 2'0'3 // SemVer
9
+ #define MP 2'0'4 // SemVer
10
10
11
11
#if defined(__GNUC__)
12
12
#pragma GCC system_header
19
19
/**
20
20
* ~~Template~~ Meta-Programming library (https://github.com/boost-ext/mp)
21
21
*/
22
- namespace mp::inline v2_0_3 {
22
+ namespace mp::inline v2_0_4 {
23
23
using size_t = decltype(sizeof(int));
24
24
25
25
namespace utility {
You can’t perform that action at this time.
0 commit comments