implicit inline for any template class?

Started by
1 comment, last by SparkyFlooner 19 years, 7 months ago
Since any method declared in the class declaration is implicitly inlined...I assume this applies to template classes as well, right? so template <class T> class Test { { ... inline T** operator&() { return &m_ptr; } private: T* m_ptr; }; ...the inline is redundant?
Advertisement
Yes.
Groovy

"They say I'm lazy but it takes all my time
Everybody say oh, yeah, oh, yeah"

This topic is closed to new replies.

Advertisement