AnyDSL / artic

The AlteRnaTive Impala Compiler
MIT License
25 stars 6 forks source link

Fix for bug AnyDSL/thorin#134 #16

Closed PearCoding closed 1 year ago

PearCoding commented 1 year ago

The usage of static and reference based lambdas is undefined behaviour as the initial reference can be destroyed, but the std::function remains. This PR fixes that and also the issue AnyDSL/thorin#134

Hugobros3 commented 1 year ago

Looking good.