Skip to content

Commit

Permalink
NonCopyable: Prevent doc generation for protected member function.
Browse files Browse the repository at this point in the history
  • Loading branch information
pan- committed Oct 23, 2018
1 parent ba23fef commit 29f7d9d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions platform/NonCopyable.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -204,6 +205,7 @@ class NonCopyable {
*/
NonCopyable &operator=(const NonCopyable &);
#endif
#endif
};

} // namespace mbed
Expand Down

0 comments on commit 29f7d9d

Please sign in to comment.