Jordan Henderson

Results 134 comments of Jordan Henderson

> all the code style issues Across all the docs? ...that sounds like a herculean task! Might be worth asking on the forum if other people might be interested in...

I've thought about this some more and the conversation over on scsynth was useful to, although the recommendation there was that this was a bad idea! I think the interface...

Crashes immediately over here... 3.14.0-dev (develop branch) Manjaro linux Native and LTO. OH NO — Does not crash in debug mode...

Further... ``` // crashes b = Pwhite.new(0, 10, inf).asStream; Array.fill(1810000, {b.next}); // does not crash Array.fill(1810000, {1}); // does NOT crash b = Routine({ loop { 1.yield } }); Array.fill(1810000,...

Yes same commit. Build options `-DNATIVE=OFF -DINSTALL_HELP=ON -DSC_EL=OFF -DSYSTEM_BOOST=ON` boost 1.83.0-5 Manjaro linux. Does not crash in debug here, but may trace is a little different, but if I remove...

If I add this line... ``` COLD void PyrGC::ScanSlots(PyrSlot* inSlots, long inNumToScan) { std::cout

After a lot of debugging... A single static cast fixed this for me. I guess it has something to do with right shifting a signed integer, which when negative, is...

I believe this is due to the temporary function objects not being free'd until the entire line has been executed, which in turn, causes an overflow when trying to print...

> you first declare the QAction, then you assign a widget to it. The QAction stuff that's going on here is quite a common QT idiom and doesn't need to...