kgorking / ecs

A header-only/importable c++20 implementation of an entity-component-system (ecs), with focus on a simple interface and speed.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mutable lambdas should only be used in non-parallel systems

kgorking opened this issue · comments

Should prevent potential race conditions

They shouldn't even be allowed there, because systems run concurrently and can therefore still cause race conditions