fix missing namespace mbed

pull/8329/head
paul-szczepanek-arm 2018-10-04 15:51:01 +01:00
parent 1af1a4a443
commit 3a408eb85a
1 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,8 @@
#include "platform/mbed_critical.h"
namespace mbed {
/** Shared pointer class.
*
* 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)
return ((T *) lhs != rhs.get());
}
} /* namespace mbed */
#endif // __SHAREDPTR_H__