- Replaced unreachable code with a false assertion
This commit is contained in:
Tristan B. Velloza Kildaire 2024-05-02 15:03:06 +02:00
parent a421b40bdb
commit 98f2f10aca
1 changed files with 4 additions and 0 deletions

View File

@ -706,6 +706,10 @@ if(isSector!(SectorType)())
thunk += sector.opDollar();
}
}
// NOTE: This should be unreachable but
// compiler moans and groans
assert(false);
}
public void opIndexAssign(T value, size_t idx)