1 2 3 4 5 6 7 8 9 10 11 12 13 14
// slang-ir-cleanup-void.h #pragma once #include "slang-ir.h" namespace Slang { struct IRModule; class DiagnosticSink; /// Cleanup all uses of void and void types. void cleanUpVoidType(IRModule* module); } // namespace Slang