Fixed nested template dependency relationship inference

This commit is contained in:
Bartek Kryza
2021-08-20 00:43:52 +02:00
parent bc54d322f2
commit ab4da6c87c
4 changed files with 34 additions and 23 deletions

View File

@@ -21,7 +21,7 @@ struct D {
};
struct R {
std::shared_ptr<A<B<std::unique_ptr<C<D>>>>> abc;
A<B<std::unique_ptr<C<D>>>> abc;
};
} // namespace t00033