Jack Diver

Results 7 comments of Jack Diver

+1 for the patch provided by @osiewicz , it cut my build times down from 4 mins to 11 seconds with clang, and from 3 mins to 12 seconds with...

Hi, thanks for the fast reply. Firstly, the method you suggest fails with the same error: ``` #include "function2.hpp" int main() { const auto callable = []{ return 5; };...

That does make sense, so could you explain why my const example doesn't compile?

+1 for this, it would be a great feature for some math blogging :)

For anyone like me who wanted to get filament working with Qt, I've created a simple hello world example based on @cgmb's repo which you can find [here.](https://github.com/nitronoid/qt_filament) I've only...

Just to add, I only had to Compile filament using Clang, but using GCC for my own projects that link against filament is fine. I assume using the binary releases...

This is the same undefined behaviour you would get when storing a temporary lambda and invoking the ref. ```cpp tl::function_ref f = [](){}; f(); ``` Of course, the below snippet...