Jonathan Müller
Jonathan Müller
I don't have access to XCode, can you please give me the following information: 1. `shared_ptr_stateful_node_size::value` 2. How many bytes are allocated by `memory::allocate_shared(pool)` (you can find it out by...
Hm, I'm not quite sure what you want - autocomplete usually requires semantic information, which lexy doesn't have as it's only during parsing. Can you give a rough sketch of...
Emphasis mine: > This type is **implicitly convertible to any type that is optional-like** by constructing a default constructible instance of it. It is only types that are optional-like, not...
> My understanding is that lexy needs either this one constructor or two constructors - one for the empty case and one for the list case. However, the empty case...
Can you give an example of errors that don't make it clear where they are produced?
Yeah, that's C++ for you, there isn't a lot I can do there. clang's error messages are a nicer: https://godbolt.org/z/on6EoG8E8 ``` In file included from :1: In file included from...
> Do you know of a way to get the macro defs? AFAIK the JSON dump still doesn't output these. You can use `clang++ -E -dD file.cpp` to get all...
... I get that this is a bug in the tool, but why do you have two headers that mutual include each other?!
> I know that there might be other architectural ways like providing functions outside both classes that do this, but in our code base we chose this way because it...
Okay, now I should have fixed it :D