diff options
| author | Yong He <yonghe@outlook.com> | 2020-06-24 14:22:52 -0700 |
|---|---|---|
| committer | Yong He <yonghe@outlook.com> | 2020-06-24 18:10:15 -0700 |
| commit | 161c525c56dfd4feb3db528f09169412d0b7ed55 (patch) | |
| tree | 4694c043749147520f17b29da10591b72144bc03 /source/slang/slang-ir.h | |
| parent | 0ca75fe002f346f6ab9b77f40c0576d2905560f1 (diff) | |
Fixes.
Diffstat (limited to 'source/slang/slang-ir.h')
| -rw-r--r-- | source/slang/slang-ir.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/slang-ir.h b/source/slang/slang-ir.h index b41c94e7f..3af800404 100644 --- a/source/slang/slang-ir.h +++ b/source/slang/slang-ir.h @@ -458,7 +458,7 @@ struct IRInst void setOperand(UInt index, IRInst* value) { - getOperands()[index].set(value); + getOperands()[index].init(this, value); } |
