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 void for_each(auto fn);
247
247
> Configuration
248
248
249
249
```cpp
250
- #define MP 2'0'2 // Current library version (SemVer)
250
+ #define MP 2'0'3 // 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 void for_each(auto fn);
288
288
CPMAddPackage(
289
289
Name mp
290
290
GITHUB_REPOSITORY boost-ext/mp
291
- GIT_TAG v2.0.2
291
+ GIT_TAG v2.0.3
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'2 // SemVer
9
+ #define MP 2'0'3 // SemVer
10
10
#if defined(__GNUC__)
11
11
#pragma GCC system_header
12
12
#endif
18
18
/**
19
19
* ~~Template~~ Meta-Programming library (https://github.com/boost-ext/mp)
20
20
*/
21
- namespace mp::inline v2_0_2 {
21
+ namespace mp::inline v2_0_3 {
22
22
using size_t = decltype(sizeof(int));
23
23
24
24
namespace utility {
You can’t perform that action at this time.
0 commit comments