Christoffer Lerno
Christoffer Lerno
From what I understand Clang has a concept of "unevaluated expressions". Evaluating sizeof basically pushes the tokens there into a blob to be parsed later. Sort of (1). This seems...
Digging a bit further I now see that in C `sizeof(Foo.a)` is *not* supported. So maybe we can solve this.
I'll have a look. Appears that there's a plugin for AppCode that swaps the auto format of AppCode with clang-format.
If we use clang-format (and I don't see why not), add a passage in "working on C2" that we use it and if working on AppCode one can use the...
A few bugs: `SmallVector Parameters` => `SmallVector < IdentifierInfo * , 32 > Parameters` `IdentifierInfo* II` and `IdentifierInfo *II` => `IdentifierInfo * II` do { foo(); } while (true); Became...
I mean add some text on the github wiki or in the docs about it. By the way, is there a way to get wiki access? I was thinking of...
Are collaborators the only ones that can be assigned to tasks as well? It's a bit weird not being able to get assigned to something you're working on.
@bvdberg I humbly pray for a different switch format. I find ``` switch (foo) { case 1: } ``` Inconsistent (the only construct that doesn't respect indent!) and near impossible...
Clang style is still 3 spaces? @bvdberg
Yeah, I think that makes sense too although might be difficult to read as a return type?