David Siegel
David Siegel
Thanks for looking into this, Logan. I think I was wrong: The `--help` flag will work as expected after merging. I just got confused switching branches or something. Any further...
> The gc callback thing feels a bit clumsy. I see you pulled the direct call trick ... other than that. Please elaborate...
Hm, yeah... a homegrown v-table... not sure... in my book that would be even more ugly as it introduces a call overhead of O(n log(n)) (I think) with n being...
BTW, I don't think it's ugly... it's merely a bit inconsistent. Actually I think I like it. The pattern has interesting properties.
I'm with @kkoopa on this. We (try to) point the user in a clear direction. Maintaining a list of working compilers is beyond our scope.
Hehe. That's an excellent question! Let me answer them both. The implicit one first: #### Why isn't the default queue the default queue? One of the guiding principles is to...
> The `AsyncWorker` classes [...] are intended as a simple way of doing the most common tasks as well as a showcase of how to (correctly) combine libuv and node...
lol. No. I'm not against free functions. On the contrary. But I'd rather not add overloads, creating oddball signatures just to fold an argument. Explicit is good and NAN has...
Regarding the C++ standard: It's designed to only require C++11. If it does use anything else that's either an accident or me being lazy or childish. It evolved from a...
> The instruction selector will never need it (lpm instructions will only be needed in hand-crafted assembly). I'm not sure that is true. [This code](https://github.com/avr-llvm/llvm/blob/avr-support/lib/Target/AVR/AVRISelDAGToDAG.cpp#L433) looks like it is trying...