Jesse Talavera
Jesse Talavera
> Merged the PR 👍 > > Of course, I wouldn't recommend using `PNTR_ENABLE_UTF8` until you actually need it. I look forward to giving it a whirl as soon as...
It is entirely possible that that is the case. When you're running on three hours of sleep and pizza, that tends to happen. I'll get back to you on that.
The issue is not the distinction between `object:method` and `object.method`; I can't call `theCallbackTimerObject:start()` because `theCallbackTimerObject.start` (note the lack of parens) is `nil`, and thus doesn't even exist. `Thor.CallbackTimer.new()` is...
You could probably provide a `using` template alias like so: ``` c++ template using optional_args = optional; ``` Much nicer.
I don't understand. Can you give a more concrete example?
OK, but what if I need different logic depending on what types were passed in?
Would your first suggestion be valid C++11, or just C++14?
@mkoa Following on from the ticket you opened... I'll look into it, though not until after I release 1.0. Although the JIT _does_ run on Switch (to my knowledge), the...
Oh, uh, I see. I need to learn to check Travis more often--maybe even use it myself, too. Anyway, what part of the test does the segfault come from, and...
And I can just pass that around as an ordinary function? Sweet. Thanks!