blob: f07e819e2beafb94ea37a93a40a6d1e46e5ccc9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// slang-ir-lower-result-type.h
#pragma once
#include "slang-ir.h"
namespace Slang
{
struct IRModule;
class DiagnosticSink;
/// Lower `IRResultType<T,E>` types to ordinary `struct`s.
void lowerResultType(IRModule* module, DiagnosticSink* sink);
} // namespace Slang
|