sparta_generics: Use proper constraint for TDictionaryEnumerable (rtl-generics related code)

git-svn-id: trunk@53076 -
This commit is contained in:
hnb 2016-10-07 23:23:55 +00:00
parent 38aaf21a27
commit bcc930023d

View File

@ -110,7 +110,7 @@ type
{ TDictionaryEnumerable }
TDictionaryEnumerable<TDictionaryEnumerator: TObject; // ... inherits from TCustomDictionaryEnumerator. workaround...
TDictionaryEnumerable<TDictionaryEnumerator, // ... inherits from TCustomDictionaryEnumerator. workaround...
T, CUSTOM_DICTIONARY_CONSTRAINTS> = class abstract(TEnumerable<T>)
private
FDictionary: TCustomDictionary<CUSTOM_DICTIONARY_CONSTRAINTS>;