We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1af1a4a commit 3a408ebCopy full SHA for 3a408eb
platform/SharedPtr.h
@@ -24,6 +24,8 @@
24
25
#include "platform/mbed_critical.h"
26
27
+namespace mbed {
28
+
29
/** Shared pointer class.
30
*
31
* A shared pointer is a "smart" pointer that retains ownership of an object using
@@ -285,4 +287,6 @@ bool operator!= (U lhs, const SharedPtr<T> &rhs)
285
287
return ((T *) lhs != rhs.get());
286
288
}
289
290
+} /* namespace mbed */
291
292
#endif // __SHAREDPTR_H__
0 commit comments