TheCoconutChef

Results 3 issues of TheCoconutChef

**Disclaimer**: If it turns out that I missed something about the framework and the problem I believe I have identified here isn't actually legitimate, then I apologize. ## The problem...

## Problem The following extern template declaration ```c++ #include using MyVariant = std::variant; namespace cereal { class JSONOutputArchive; extern template void save(JSONOutputArchive&, const MyVariant&); } ``` is seemingly never treated...

The following fails to compile starting from gcc 14.3 ([godbolt link](https://godbolt.org/z/b7brMsdrx)): ```c++ #include #include #include int main() { auto um = std::unordered_map{ {0,0}, {1,1}, {2,2} }; auto uv = std::vector(um.begin(),...