Always say "private noncopyable" to avoid warnings.

[SVN r12762]
This commit is contained in:
Darin Adler
2014-06-12 21:23:06 +04:00
committed by Andrey Semashev
parent 50f6e3b081
commit af68d7cde5
+1 -1
View File
@@ -20,7 +20,7 @@
namespace
{
class DontTreadOnMe : boost::noncopyable
class DontTreadOnMe : private boost::noncopyable
{
public:
DontTreadOnMe() { std::cout << "defanged!" << std::endl; }