Peter Steneteg
Peter Steneteg
@phlptp fyi https://github.com/microsoft/vcpkg/pull/37417
On Mac there is no context menu on the scrollbar at all.. so no issue ;)
Work on GHA now
Poke? Any progress on this? Would really appreciate if this was merged!!!
I've also run into this from users who have accidentally added python debug libs when installing python. And then nothing compiles anymore. Not an easy problem to track down...
@julien-tierny So to a first approximation inlining more will make it faster, since it will avoid the function call overhead, and often enables a bunch of other optimization. The problems...
Question, in the new implementation you have all the implementation in the header, so it can be inlined. Where as the ModifiedOldImplicitTriangulation/OldImplicitTriangulation it seems most of the implementations are in...
Link Time Optimization or LTO can basically look at both cpp files and headers and select what to inline, I can also potentially be quite effective at de-virtualizing i.e. getting...