mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Use deleted members to prevent copying in Beast (RIPD-268)
This commit is contained in:
committed by
Vinnie Falco
parent
cd97b5beec
commit
60330da25c
@@ -34,7 +34,7 @@ namespace beast {
|
||||
|
||||
@see Thread, BEASTApplication
|
||||
*/
|
||||
class Process : public Uncopyable
|
||||
class Process
|
||||
{
|
||||
public:
|
||||
//==============================================================================
|
||||
@@ -130,7 +130,9 @@ public:
|
||||
#endif
|
||||
|
||||
private:
|
||||
Process();
|
||||
Process() = delete;
|
||||
Process (Process const&) = delete;
|
||||
Process const& operator= (Process const&) = delete;
|
||||
};
|
||||
|
||||
} // beast
|
||||
|
||||
Reference in New Issue
Block a user