remove comment

This commit is contained in:
aoyako 2024-03-02 15:41:30 +09:00
parent d1b9216ee1
commit 359e7b8597

View File

@ -359,12 +359,6 @@ func (cs *compileState) parse(f *ast.File) {
for _, f := range cs.funcs {
cs.ir.Funcs = append(cs.ir.Funcs, f.ir)
}
// if len(cs.delayedTypeCheks) != 0 {
// for _, check := range cs.delayedTypeCheks {
// cs.addError(check.Pos(), check.Error())
// }
// }
}
func (cs *compileState) parseDecl(b *block, fname string, d ast.Decl) ([]shaderir.Stmt, bool) {