Skip to content

Commit 5c637d2

Browse files
committed
⬆️ v1.1.0
1 parent 2d58529 commit 5c637d2

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
@@ -473,7 +473,7 @@ debug(f); // compile-time error: debug(foo) is not defined
473473
> Configuration
474474
475475
```cpp
476-
#define REFLECT 1'0'9 // Current library version (SemVer)
476+
#define REFLECT 1'1'0 // Current library version (SemVer)
477477
#define REFLECT_ENUM_MIN -1 // Min size for enum name
478478
#define REFLECT_ENUM_MAX 1024 // Max size for enum name
479479
```
@@ -533,7 +533,7 @@ debug(f); // compile-time error: debug(foo) is not defined
533533
CPMAddPackage(
534534
Name reflect
535535
GITHUB_REPOSITORY boost-ext/reflect
536-
GIT_TAG v1.0.9
536+
GIT_TAG v1.1.0
537537
)
538538
add_library(reflect INTERFACE)
539539
target_include_directories(reflect SYSTEM INTERFACE ${reflect_SOURCE_DIR})

reflect

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
#error "[error][reflect] <tuple> not found!"
5252
#else
5353
#ifndef REFLECT
54-
#define REFLECT 1'0'9 // SemVer
54+
#define REFLECT 1'1'0 // SemVer
5555

5656
#include <array>
5757
#include <string_view>
@@ -79,7 +79,7 @@ struct REFLECT_STRUCT { void* MEMBER; enum class ENUM { VALUE }; }; // has to b
7979
/**
8080
* Minimal static reflection library ($CXX -x c++ -std=c++20 -c reflect) [https://godbolt.org/z/dd6cfW98c]
8181
*/
82-
namespace reflect::inline v1_0_9 {
82+
namespace reflect::inline v1_1_0 {
8383
namespace detail {
8484
template<class T> extern const T ext{};
8585
struct any { template<class T> constexpr operator T() const noexcept; };

0 commit comments

Comments
 (0)