mirror of https://github.com/ARMmbed/mbed-os.git
NonCopyable: Prevent doc generation for protected member function.
parent
ba23fef90b
commit
29f7d9d508
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue