-
```c++
template
void serialize(Output& out, const boost::variant& v) {}
template
boost::variant deserialize(Input& in, boost::type) {
return boost::variant();
}
```
719b8e1e4d83636d2ce180ab76045…
-
I have been blessed with some problematic IDL. Here's a test case:
```
union Strings switch(long)
{
case 0: string str0;
case 1: string str1;
};
```
Not unreasonably, C…
-
Across the WordPress ecosystem, the wizard UI is widely used in plugins, particularly for onboarding, setup, and feature guidance. Currently, there’s no standardized approach to wizard implementations…
-
Right now, WASI config does not prescribe syntax for configuration keys. Different host implementations may only support keys with certain formats. Could we add an `invalid-name` error to allow the ho…
-
Because Azure services define a lot of enums and, despite generating most of our clients, hand-authored enums could benefit from consistency with [our guidelines](https://azure.github.io/azure-sdk/rus…
-
In light of https://github.com/samtools/hts-specs/issues/756 and further discussion with implementations, it appears that the current definition of GQ is problematic.
`GQ (Integer): Conditional gen…
-
In some use cases, it can be useful to declare packages as **mutually exclusive** (for example, different night mods or different terrain mods). The number of those packages shouldn't fixed, but shoul…
-
If I understand correctly, poly_csubq is not required for compressions. The reason is that, in the current avx2 implementations, the floor variant of Barrett reduction is used instead of the rounding …
-
### Description
When I first downloaded Kando 1.4.0, I had a problem, I wanted Kando to start with Windows, so I created a link on Kando and put it in the startup folder, but when I installed a new v…
-
Spring Framework currently shades ASM for several features:
1. bytecode generation with cglib
2. reading class metadata from bytecode
Our usage of ASM is not a problem these days and we tend to a…