Skip to content
Snippets Groups Projects
Commit 3b9bb50e authored by Robert Kloefkorn's avatar Robert Kloefkorn
Browse files

small change.

parent feca9fb3
No related branches found
No related tags found
No related merge requests found
......@@ -87,8 +87,11 @@ class MpAccessGlobal {
class MpAccessLocal : public MpAccessGlobal
{
map < int, int, less < int > > _linkage ;
vector< int > _dest ;
typedef map < int, int, less < int > > linkage_t ;
typedef vector< int > vector_t ;
linkage_t _linkage ;
vector_t _dest ;
public :
class NonBlockingExchange
{
......@@ -148,8 +151,8 @@ inline int MpAccessLocal :: nlinks () const {
inline void MpAccessLocal :: removeLinkage ()
{
_linkage.clear();
_dest.clear();
_linkage = linkage_t();
_dest = vector_t();
return ;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment