Skip to content

Commit

Permalink
⬆️ v2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kris-jusiak committed Jul 15, 2024
1 parent ba8bb7f commit 7df4d5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ constexpr void for_each(Fn fn);
> Configuration
```cpp
#define MP 2'0'1 // Current library version (SemVer)
#define MP 2'0'2 // Current library version (SemVer)
```

---
Expand Down Expand Up @@ -286,7 +286,7 @@ constexpr void for_each(Fn fn);
CPMAddPackage(
Name mp
GITHUB_REPOSITORY boost-ext/mp
GIT_TAG v2.0.1
GIT_TAG v2.0.2
)
add_library(mp INTERFACE)
target_include_directories(mp SYSTEM INTERFACE ${mp_SOURCE_DIR})
Expand Down
4 changes: 2 additions & 2 deletions mp
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
// http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef MP
#define MP 2'0'1 // SemVer
#define MP 2'0'2 // SemVer
#if defined(__GNUC__)
#pragma GCC system_header
#endif

/**
* ~~Template~~ Meta-Programming library (https://github.com/boost-ext/mp)
*/
namespace mp::inline v2_0_1 {
namespace mp::inline v2_0_2 {
using size_t = decltype(sizeof(int));

namespace utility {
Expand Down

0 comments on commit 7df4d5c

Please sign in to comment.