Commit aeea463c authored by Davis King's avatar Davis King

Removed the restriciton on copying rand object.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403397
parent 64947f33
......@@ -103,11 +103,6 @@ namespace dlib
mt19937 mt;
std::string seed;
// restricted functions
rand_kernel_1(rand_kernel_1&); // copy constructor
rand_kernel_1& operator=(rand_kernel_1&); // assignment operator
};
......
......@@ -105,12 +105,6 @@ namespace dlib
- swaps *this and item
!*/
private:
// restricted functions
rand(rand&); // copy constructor
rand& operator=(rand&); // assignment operator
};
inline void swap (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment