all: remove ineffective _ = variable assignments (#530)

Lastest Zig complains about this, so they must removed to build.
This commit is contained in:
locriacyber 2022-09-14 16:42:29 +00:00 committed by GitHub
parent 98d929611c
commit b8c48d6321
Failed to generate hash of commit
4 changed files with 0 additions and 6 deletions

View file

@ -342,7 +342,6 @@ pub const void_archetype_hash = std.math.maxInt(u64);
/// * ComponentStorage(T) is a column of data within a table for a single type of component `T`.
pub fn Entities(comptime all_components: anytype) type {
// TODO: validate all_components is a namespaced component set in the form we expect
_ = all_components;
return struct {
allocator: Allocator,