diff options
| author | Yong He <yonghe@outlook.com> | 2017-12-27 20:17:36 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-27 20:17:36 -0500 |
| commit | e370fe2984e7e260dc2d78d67b087e542d0102b0 (patch) | |
| tree | dd441836025e802f79e74646f8f280c7515cbaec /source/slang/syntax.h | |
| parent | 69242398be1ba76898c0d6541eec3b7ca0ec1ab4 (diff) | |
| parent | d55b56bc804f25d8390f1dc6b09ff9116ffcaf29 (diff) | |
Merge pull request #335 from csyonghe/master
Support nested generic types (e.g. L<T<S>>)
Diffstat (limited to 'source/slang/syntax.h')
| -rw-r--r-- | source/slang/syntax.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/syntax.h b/source/slang/syntax.h index 749c5ae32..00e6bd6d3 100644 --- a/source/slang/syntax.h +++ b/source/slang/syntax.h @@ -1167,7 +1167,7 @@ namespace Slang void removeSubstitution(DeclRefBase & declRef, RefPtr<Substitutions> subst); bool hasGenericSubstitutions(RefPtr<Substitutions> subst); RefPtr<GenericSubstitution> getGenericSubstitution(RefPtr<Substitutions> subst); - + // This function substitutes the type arguments referenced in a linked list of substitutions // which head is at `substHead` using the substitutions specified by `subst`. If the linked // list `substHead` does not contain `GlobalGenericParamSubstitution` entries, they will be |
