File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,8 @@ int main()
4141}
4242```
4343
44- This example uses the static reflection interface based on the `pfr` library. It requires C++20 and only works with
44+ This example uses the static reflection interface based on the [`pfr`](https://github.com/apolukhin/pfr_non_boost)
45+ library. It requires C++20 and only works with
4546aggregate initializable structures. On C++17, the runtime reflection solution originally developed with `figcone` is
4647used to register configuration fields:
4748
@@ -199,7 +200,8 @@ Examples in the documentation use registration with macros, as it is the least v
199200
200201### Config structure for static reflection (C++20)
201202
202- Static reflection provided by the ` pfr ` library allows us to register configuration by using aggregate structures
203+ Static reflection provided by the [ ` pfr ` ] ( https://github.com/apolukhin/pfr_non_boost ) library allows us to register
204+ configuration by using aggregate structures
203205without any base class and macros. Let's return to the example from the beginning of this document:
204206
205207``` c++
You can’t perform that action at this time.
0 commit comments