X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=boost%2Fboost%2Fnoncopyable.hpp;h=7770bdbd372027a4d87866b9a781393d0ad69c06;hb=43c09d723435a5b203f2ac0c39e2086de836b386;hp=e2c8399d0161c4e18b753f8f01c82ba979a171de;hpb=e1644a68eb123c267a7ef2e651c66b788c38f03a;p=lyx.git diff --git a/boost/boost/noncopyable.hpp b/boost/boost/noncopyable.hpp index e2c8399d01..7770bdbd37 100644 --- a/boost/boost/noncopyable.hpp +++ b/boost/boost/noncopyable.hpp @@ -1,10 +1,8 @@ // Boost noncopyable.hpp header file --------------------------------------// -// (C) Copyright Boost.org 1999-2003. Permission to copy, use, modify, sell -// and distribute this software is granted provided this copyright -// notice appears in all copies. This software is provided "as is" without -// express or implied warranty, and with no claim as to its suitability for -// any purpose. +// (C) Copyright Beman Dawes 1999-2003. Distributed under the Boost +// Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org/libs/utility for documentation. @@ -18,15 +16,20 @@ namespace boost { // Contributed by Dave Abrahams -class noncopyable +namespace noncopyable_ // protection from unintended ADL { - protected: - noncopyable() {} - ~noncopyable() {} - private: // emphasize the following members are private - noncopyable( const noncopyable& ); - const noncopyable& operator=( const noncopyable& ); -}; + class noncopyable + { + protected: + noncopyable() {} + ~noncopyable() {} + private: // emphasize the following members are private + noncopyable( const noncopyable& ); + const noncopyable& operator=( const noncopyable& ); + }; +} + +typedef noncopyable_::noncopyable noncopyable; } // namespace boost