-
I was surprised to find out PFR fails to compile the following non-copyable aggregate `Entity` with MSVC 17.10:
```
struct Field final {
Field() = default;
Field(const Field&) = delete;
};
…
-
Hey, I have some pybinded structs, that have a lot of repeating boilerplate:
```cpp
struct MyStruct {
int x;
char c;
};
py::class_< MyStruct >(module, "MyStruct")
.def_readonly("x", &…
-
## Story
As the maintainer of ElectricEye I want to update the GCP Auditors and `CloudUtils` so that I can expand coverage of GCP services and use different authentication mechanisms for improving …
-
I have a query in supabase-js that works, and when I translate it to supabase-py it doesn't work. I am on the latest version of each. From what I could gather while poking around, the python version d…
-
Provided the following hierarchy of classes:
```C++
namespace empty_base {
struct A {};
struct B {};
// Empty base, no members
struct C : A {};
// Empty base, some members
struct D : A {…
-
Hi, I see in the Limitations section
> Boost.PFR library works with types that satisfy the requirements of SimpleAggregate: aggregate types without base classes, const fields, references, or C arr…
-
### Description of the bug
Hi @GallVp , AssemblyQC successfully completed assessing an assembly with HiC data. When I check the HiC QC report, it mentioned [forward/reverse] Hi-C reads not found, as …
-
### Is there an existing issue for this?
- [X] I have searched the existing issues
### Have you installed the latest development version of the package(s) in question?
- [X] I have installed the la…
-
demo code like this
```
#include "boost/pfr.hpp"
struct some_person {
float data[3];
};
int main(int argc, const char* argv[]) {
auto name = boost::pfr::names_as_array();
}
```
-
Reproduce:
```
struct Foo { int x[2]; };
```
gcc: 13.2.0
compile command: ` g++ -std=c++20 a.cpp -Ipath/to/boost`
Expect:
`expects(boost::pfr::tuple_size_v == 1);`
Actual:
`boost::pfr::tup…