mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 20:25:34 -05:00
Some virtual functions in `LambdaSupport.h` are meant to be purely virtual, but lack a `= 0` in their signature. In debug builds, this causes the linker to look for a default implementation, resulting in a linker error. This patch marks the virtual functions as purely virtual, resolving the linker issues in debug builds.