mirror of
https://github.com/RGBCube/serenity
synced 2026-01-14 08:10:59 +00:00
clang trunk with -std=c++20 doesn't seem to properly look for an
aggregate initializer here when the type being constructed is a simple
aggregate (e.g. `struct Thing { int a; int b; };`). This template fails
to compile in a usage added 12/16/2020 in `AK/Trie.h`.
Both forms of initialization are supposed to call the
aggregate-initializers but direct-list-initialization delegating to
aggregate initializers is a new addition in c++20 that might not be
implemented yet.
|
||
|---|---|---|
| .. | ||
| CMakeLists.txt | ||
| DNSAnswer.cpp | ||
| DNSAnswer.h | ||
| DNSPacket.h | ||
| DNSQuestion.h | ||
| DNSRequest.cpp | ||
| DNSRequest.h | ||
| DNSResponse.cpp | ||
| DNSResponse.h | ||
| LookupServer.cpp | ||
| LookupServer.h | ||
| main.cpp | ||