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 @@ -473,7 +473,7 @@ debug(f); // compile-time error: debug(foo) is not defined
473
473
> Configuration
474
474
475
475
```cpp
476
- #define REFLECT 1'0'9 // Current library version (SemVer)
476
+ #define REFLECT 1'1'0 // Current library version (SemVer)
477
477
#define REFLECT_ENUM_MIN -1 // Min size for enum name
478
478
#define REFLECT_ENUM_MAX 1024 // Max size for enum name
479
479
```
@@ -533,7 +533,7 @@ debug(f); // compile-time error: debug(foo) is not defined
533
533
CPMAddPackage(
534
534
Name reflect
535
535
GITHUB_REPOSITORY boost-ext/reflect
536
- GIT_TAG v1.0.9
536
+ GIT_TAG v1.1.0
537
537
)
538
538
add_library(reflect INTERFACE)
539
539
target_include_directories(reflect SYSTEM INTERFACE ${reflect_SOURCE_DIR})
Original file line number Diff line number Diff line change 51
51
#error "[error][reflect] <tuple> not found!"
52
52
#else
53
53
#ifndef REFLECT
54
- #define REFLECT 1'0'9 // SemVer
54
+ #define REFLECT 1'1'0 // SemVer
55
55
56
56
#include <array>
57
57
#include <string_view>
@@ -79,7 +79,7 @@ struct REFLECT_STRUCT { void* MEMBER; enum class ENUM { VALUE }; }; // has to b
79
79
/**
80
80
* Minimal static reflection library ($CXX -x c++ -std=c++20 -c reflect) [https://godbolt.org/z/dd6cfW98c]
81
81
*/
82
- namespace reflect::inline v1_0_9 {
82
+ namespace reflect::inline v1_1_0 {
83
83
namespace detail {
84
84
template<class T> extern const T ext{};
85
85
struct any { template<class T> constexpr operator T() const noexcept; };
You can’t perform that action at this time.
0 commit comments