cmCryptoHash: make noncopyable

This commit is contained in:
Daniel Pfeifer 2017-04-22 00:31:52 +02:00
parent 7284b15f8c
commit b44659f5e8

View File

@ -78,6 +78,9 @@ public:
std::string FinalizeHex();
private:
cmCryptoHash(cmCryptoHash const&);
cmCryptoHash& operator=(cmCryptoHash const&);
unsigned int Id;
struct rhash_context* CTX;
};