Skip to content

Commit 3a408eb

Browse files
fix missing namespace mbed
1 parent 1af1a4a commit 3a408eb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

platform/SharedPtr.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424

2525
#include "platform/mbed_critical.h"
2626

27+
namespace mbed {
28+
2729
/** Shared pointer class.
2830
*
2931
* 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)
285287
return ((T *) lhs != rhs.get());
286288
}
287289

290+
} /* namespace mbed */
291+
288292
#endif // __SHAREDPTR_H__

0 commit comments

Comments
 (0)