Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:FooImpl

571   template <typename T> class FooImpl : public Foo {
574 FooImpl(const T &x) : val(x) {}
575 ~FooImpl() { stuff(); }
578 template <typename T> FooImpl<T> makeFoo(const T& x) {
579 return FooImpl<T>(x);