File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/Generator/Generators/CSharp Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -333,7 +333,7 @@ classTemplate.OriginalNamespace is Class &&
333
333
foreach ( var specialization in generated . KeepSingleAllPointersSpecialization ( ) )
334
334
GenerateClassInternals ( specialization ) ;
335
335
336
- foreach ( var group in generated . SelectMany ( s => s . Classes ) . Where (
336
+ foreach ( var group in specializations . SelectMany ( s => s . Classes ) . Where (
337
337
c => ! c . IsIncomplete ) . GroupBy ( c => c . Name ) )
338
338
{
339
339
var nested = classTemplate . Classes . FirstOrDefault ( c => c . Name == group . Key ) ;
Original file line number Diff line number Diff line change @@ -85,6 +85,11 @@ class IndependentFields : public T1
85
85
{
86
86
typedef T Type;
87
87
public:
88
+ class Nested
89
+ {
90
+ private:
91
+ T field;
92
+ };
88
93
IndependentFields ();
89
94
IndependentFields (const IndependentFields<T>& other);
90
95
IndependentFields (const T& t);
You can’t perform that action at this time.
0 commit comments