NonCopyable: Prevent doc generation for protected member function.

pull/8509/head
Vincent Coubard 2018-10-23 12:11:02 +01:00
parent ba23fef90b
commit 29f7d9d508
1 changed files with 2 additions and 0 deletions

View File

@ -148,6 +148,7 @@ namespace mbed {
*/
template<typename T>
class NonCopyable {
#ifndef DOXYGEN_ONLY
protected:
/**
* Disallow construction of NonCopyable objects from outside of its hierarchy.
@ -204,6 +205,7 @@ private:
*/
NonCopyable &operator=(const NonCopyable &);
#endif
#endif
};
} // namespace mbed