Skip to content
Snippets Groups Projects
Commit 8afd7b1e authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

Use DISALLOW_COPY_AND_ASSIGN macro.

parent d058670e
No related branches found
No related tags found
No related merge requests found
...@@ -62,20 +62,7 @@ public: ...@@ -62,20 +62,7 @@ public:
unsigned const* const po_perm) const; unsigned const* const po_perm) const;
private: private:
/** DISALLOW_COPY_AND_ASSIGN(AdjMat);
* copy constructor
* @param src another AdjMat with data for initialization
*/
AdjMat(const AdjMat&);
/**
* assignment operator
* @param rhs a instance of AdjacencyCRSMatrix
*/
AdjMat& operator=(AdjMat&)
{
return *this;
}
}; };
} }
......
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