|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r66981 - sandbox/configurator/boost/configurator
From: for.dshevchenko_at_[hidden]
Date: 2010-12-03 03:13:57
Author: dshevchenko
Date: 2010-12-03 03:13:55 EST (Fri, 03 Dec 2010)
New Revision: 66981
URL: http://svn.boost.org/trac/boost/changeset/66981
Log:
Remove unnecessary copy ctor and assign operator in single_configurator (it derived from noncopyable configurator)
Text files modified:
sandbox/configurator/boost/configurator/configurator.hpp | 4 ----
1 files changed, 0 insertions(+), 4 deletions(-)
Modified: sandbox/configurator/boost/configurator/configurator.hpp
==============================================================================
--- sandbox/configurator/boost/configurator/configurator.hpp (original)
+++ sandbox/configurator/boost/configurator/configurator.hpp 2010-12-03 03:13:55 EST (Fri, 03 Dec 2010)
@@ -436,11 +436,7 @@
, public detail::singleton< single_configurator > {
private:
single_configurator() {}
- single_configurator( const single_configurator& another ) {}
~single_configurator() {}
- single_configurator& operator=( const single_configurator& another ) {
- return *this;
- }
friend class detail::singleton< single_configurator >;
};
#endif
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk