Is there any c++ class that can't be used in STL?
c++, stl
Solution
classes that can't be copied. STL containers require objects to be copyable since the container owns a copy of that object, and needs to be able to move it around.
Problem
Just come up with this question. Any hint?