You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Comment out unreachable code paths in type stability helpers
- Line 69: else branch in _stabilize_mesh_type (map(identity, mesh))
- Line 125: non-concrete mesh warning in first MeshArray constructor
- Line 155: non-concrete mesh warning in second MeshArray constructor
These branches are unreachable in practice because typeof() always
returns the actual runtime type, which is concrete. The code is kept
as commented out for defensive programming and documentation purposes.
Reason: typeof(x) evaluates to the runtime type, not the compile-time
inferred type, so isconcretetype(typeof(x)) is always true.
0 commit comments