diff options
Diffstat (limited to 'source/slang/slang-ir-lower-error-handling.cpp')
| -rw-r--r-- | source/slang/slang-ir-lower-error-handling.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/slang/slang-ir-lower-error-handling.cpp b/source/slang/slang-ir-lower-error-handling.cpp index 013f683c0..d598df9bb 100644 --- a/source/slang/slang-ir-lower-error-handling.cpp +++ b/source/slang/slang-ir-lower-error-handling.cpp @@ -18,11 +18,11 @@ struct ErrorHandlingLoweringContext void addToWorkList(IRInst* inst) { - if (workListSet.Contains(inst)) + if (workListSet.contains(inst)) return; workList.add(inst); - workListSet.Add(inst); + workListSet.add(inst); } void processFuncType(IRFuncType* funcType) @@ -182,7 +182,7 @@ struct ErrorHandlingLoweringContext IRInst* inst = workList.getLast(); workList.removeLast(); - workListSet.Remove(inst); + workListSet.remove(inst); processInst(inst); |
