mirror of
https://github.com/boostorg/function.git
synced 2025-07-29 04:17:15 +02:00
Update license to the new Boost license (yay!)
[SVN r20235]
This commit is contained in:
@ -19,16 +19,10 @@
|
|||||||
</copyright>
|
</copyright>
|
||||||
|
|
||||||
<legalnotice>
|
<legalnotice>
|
||||||
<para>Permission to copy, use, sell and distribute this software
|
<para>Use, modification and distribution is subject to the Boost
|
||||||
is granted provided this copyright notice appears in all copies.
|
Software License, Version 1.0. (See accompanying file
|
||||||
Permission to modify the code and to distribute modified code is
|
<filename>LICENSE_1_0.txt</filename> or copy at <ulink
|
||||||
granted provided this copyright notice appears in all copies, and
|
url="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</ulink>)</para>
|
||||||
a notice that the code was modified is included with the copyright
|
|
||||||
notice. </para>
|
|
||||||
|
|
||||||
<para> This software is provided "as is" without express or
|
|
||||||
implied warranty, and with no claim as to its suitability for any
|
|
||||||
purpose. </para>
|
|
||||||
</legalnotice>
|
</legalnotice>
|
||||||
|
|
||||||
<librarypurpose>Function object wrappers for deferred calls or callbacks</librarypurpose>
|
<librarypurpose>Function object wrappers for deferred calls or callbacks</librarypurpose>
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library examples
|
// Boost.Function library examples
|
||||||
|
|
||||||
// Copyright (C) 2001 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2001-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -1,23 +1,17 @@
|
|||||||
// Boost.Function library examples
|
// Boost.Function library examples
|
||||||
|
|
||||||
// Copyright (C) 2001 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2001-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <boost/function.hpp>
|
#include <boost/function.hpp>
|
||||||
|
|
||||||
struct int_div {
|
struct int_div {
|
||||||
float operator()(int x, int y) const { return ((float)x)/y; };
|
float operator()(int x, int y) const { return ((float)x)/y; };
|
||||||
};
|
};
|
||||||
|
|
||||||
int
|
int
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library examples
|
// Boost.Function library examples
|
||||||
|
|
||||||
// Copyright (C) 2001 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2001-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
@ -28,7 +22,7 @@ int
|
|||||||
main()
|
main()
|
||||||
{
|
{
|
||||||
// The second parameter should be int[], but some compilers (e.g., GCC)
|
// The second parameter should be int[], but some compilers (e.g., GCC)
|
||||||
// complain about this
|
// complain about this
|
||||||
boost::function<void, int*, int, int&, float&> sum_avg;
|
boost::function<void, int*, int, int&, float&> sum_avg;
|
||||||
|
|
||||||
sum_avg = &do_sum_avg;
|
sum_avg = &do_sum_avg;
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2001, 2002 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2001-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org/libs/function
|
// For more information, see http://www.boost.org/libs/function
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2002-2003 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
#if !defined(BOOST_PP_IS_ITERATING)
|
#if !defined(BOOST_PP_IS_ITERATING)
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2003 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2002-2003 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2002-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2002-2003 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2002-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2002-2003 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2002-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2002-2003 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2002-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2002-2003 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2002-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2002-2003 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2002-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2002-2003 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2002-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2002-2003 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2002-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2002-2003 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2002-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2002-2003 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2002-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2002-2003 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2002-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2002-2003 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2002-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2001-2003 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2001-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2001-2003 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2001-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -2,16 +2,10 @@
|
|||||||
#
|
#
|
||||||
# Boost.Function library
|
# Boost.Function library
|
||||||
#
|
#
|
||||||
# Copyright (C) 2001-2003 Doug Gregor (gregod@cs.rpi.edu)
|
# Copyright Doug Gregor 2001-2003. Use, modification and
|
||||||
#
|
# distribution is subject to the Boost Software License, Version
|
||||||
# Permission to copy, use, sell and distribute this software is granted
|
# 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
# provided this copyright notice appears in all copies.
|
# http://www.boost.org/LICENSE_1_0.txt)
|
||||||
# Permission to modify the code and to distribute modified code is granted
|
|
||||||
# provided this copyright notice appears in all copies, and a notice
|
|
||||||
# that the code was modified is included with the copyright notice.
|
|
||||||
#
|
|
||||||
# This software is provided "as is" without express or implied warranty,
|
|
||||||
# and with no claim as to its suitability for any purpose.
|
|
||||||
#
|
#
|
||||||
# For more information, see http://www.boost.org
|
# For more information, see http://www.boost.org
|
||||||
use English;
|
use English;
|
||||||
|
13
test/Jamfile
13
test/Jamfile
@ -2,13 +2,9 @@
|
|||||||
|
|
||||||
# Copyright (C) 2001-2003 Douglas Gregor
|
# Copyright (C) 2001-2003 Douglas Gregor
|
||||||
|
|
||||||
# Permission to copy, use, sell and distribute this software is granted
|
# Use, modification and distribution is subject to the Boost Software License,
|
||||||
# provided this copyright notice appears in all copies. Permission to modify
|
# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
# the code and to distribute modified code is granted provided this copyright
|
# http://www.boost.org/LICENSE_1_0.txt)
|
||||||
# notice appears in all copies, and a notice that the code was modified is
|
|
||||||
# included with the copyright notice. This software is provided "as is"
|
|
||||||
# without express or implied warranty, and with no claim as to its suitability
|
|
||||||
# for any purpose.
|
|
||||||
|
|
||||||
# For more information, see http://www.boost.org/
|
# For more information, see http://www.boost.org/
|
||||||
|
|
||||||
@ -17,7 +13,8 @@
|
|||||||
subproject libs/function/test ;
|
subproject libs/function/test ;
|
||||||
|
|
||||||
# bring in rules for testing
|
# bring in rules for testing
|
||||||
import testing ;
|
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
|
||||||
|
include testing.jam ;
|
||||||
|
|
||||||
# Make tests run by default.
|
# Make tests run by default.
|
||||||
DEPENDS all : test ;
|
DEPENDS all : test ;
|
||||||
|
@ -1,14 +1,9 @@
|
|||||||
# Function library
|
# Function library
|
||||||
|
|
||||||
# Copyright (C) 2001-2003 Douglas Gregor
|
# Copyright Doug Gregor 2001-2003. Use, modification and
|
||||||
|
# distribution is subject to the Boost Software License, Version
|
||||||
# Permission to copy, use, sell and distribute this software is granted
|
# 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
# provided this copyright notice appears in all copies. Permission to modify
|
# http://www.boost.org/LICENSE_1_0.txt)
|
||||||
# the code and to distribute modified code is granted provided this copyright
|
|
||||||
# notice appears in all copies, and a notice that the code was modified is
|
|
||||||
# included with the copyright notice. This software is provided "as is"
|
|
||||||
# without express or implied warranty, and with no claim as to its suitability
|
|
||||||
# for any purpose.
|
|
||||||
|
|
||||||
# For more information, see http://www.boost.org/
|
# For more information, see http://www.boost.org/
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2001 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2001-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
@ -34,7 +28,7 @@ struct counting_allocator : public std::allocator<T>
|
|||||||
typedef counting_allocator<U> other;
|
typedef counting_allocator<U> other;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
T* allocate(std::size_t n)
|
T* allocate(std::size_t n)
|
||||||
{
|
{
|
||||||
alloc_count++;
|
alloc_count++;
|
||||||
@ -60,7 +54,7 @@ static void do_nothing() {}
|
|||||||
int
|
int
|
||||||
test_main(int, char*[])
|
test_main(int, char*[])
|
||||||
{
|
{
|
||||||
function2<int, int, int, counting_allocator<int> > f;
|
function2<int, int, int, counting_allocator<int> > f;
|
||||||
f = plus<int>();
|
f = plus<int>();
|
||||||
f.clear();
|
f.clear();
|
||||||
BOOST_TEST(alloc_count == 1);
|
BOOST_TEST(alloc_count == 1);
|
||||||
@ -78,7 +72,7 @@ test_main(int, char*[])
|
|||||||
fv.clear();
|
fv.clear();
|
||||||
BOOST_TEST(alloc_count == 1);
|
BOOST_TEST(alloc_count == 1);
|
||||||
BOOST_TEST(dealloc_count == 1);
|
BOOST_TEST(dealloc_count == 1);
|
||||||
|
|
||||||
alloc_count = 0;
|
alloc_count = 0;
|
||||||
dealloc_count = 0;
|
dealloc_count = 0;
|
||||||
fv = &do_nothing;
|
fv = &do_nothing;
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2002-2003 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2002-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -2,13 +2,9 @@
|
|||||||
|
|
||||||
// Copyright (C) 2001-2003 Douglas Gregor
|
// Copyright (C) 2001-2003 Douglas Gregor
|
||||||
|
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// Use, modification and distribution is subject to the Boost Software
|
||||||
// provided this copyright notice appears in all copies. Permission to modify
|
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// the code and to distribute modified code is granted provided this copyright
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// notice appears in all copies, and a notice that the code was modified is
|
|
||||||
// included with the copyright notice. This software is provided "as is"
|
|
||||||
// without express or implied warranty, and with no claim as to its
|
|
||||||
// suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org/
|
// For more information, see http://www.boost.org/
|
||||||
|
|
||||||
|
@ -2,13 +2,9 @@
|
|||||||
|
|
||||||
// Copyright (C) 2001-2003 Douglas Gregor
|
// Copyright (C) 2001-2003 Douglas Gregor
|
||||||
|
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// Use, modification and distribution is subject to the Boost Software
|
||||||
// provided this copyright notice appears in all copies. Permission to modify
|
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// the code and to distribute modified code is granted provided this copyright
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// notice appears in all copies, and a notice that the code was modified is
|
|
||||||
// included with the copyright notice. This software is provided "as is"
|
|
||||||
// without express or implied warranty, and with no claim as to its
|
|
||||||
// suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org/
|
// For more information, see http://www.boost.org/
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2001, 2002 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2001-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -2,13 +2,9 @@
|
|||||||
|
|
||||||
// Copyright (C) 2001-2003 Douglas Gregor
|
// Copyright (C) 2001-2003 Douglas Gregor
|
||||||
|
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// Use, modification and distribution is subject to the Boost Software
|
||||||
// provided this copyright notice appears in all copies. Permission to modify
|
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// the code and to distribute modified code is granted provided this copyright
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// notice appears in all copies, and a notice that the code was modified is
|
|
||||||
// included with the copyright notice. This software is provided "as is"
|
|
||||||
// without express or implied warranty, and with no claim as to its
|
|
||||||
// suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org/
|
// For more information, see http://www.boost.org/
|
||||||
|
|
||||||
|
@ -2,13 +2,9 @@
|
|||||||
|
|
||||||
// Copyright (C) 2001-2003 Douglas Gregor
|
// Copyright (C) 2001-2003 Douglas Gregor
|
||||||
|
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// Use, modification and distribution is subject to the Boost Software
|
||||||
// provided this copyright notice appears in all copies. Permission to modify
|
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// the code and to distribute modified code is granted provided this copyright
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// notice appears in all copies, and a notice that the code was modified is
|
|
||||||
// included with the copyright notice. This software is provided "as is"
|
|
||||||
// without express or implied warranty, and with no claim as to its
|
|
||||||
// suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org/
|
// For more information, see http://www.boost.org/
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2001, 2002 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2001-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2001 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2001-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2001 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2001-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2002-2003 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2002-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -2,13 +2,9 @@
|
|||||||
|
|
||||||
// Copyright (C) 2001-2003 Douglas Gregor
|
// Copyright (C) 2001-2003 Douglas Gregor
|
||||||
|
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// Use, modification and distribution is subject to the Boost Software
|
||||||
// provided this copyright notice appears in all copies. Permission to modify
|
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// the code and to distribute modified code is granted provided this copyright
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// notice appears in all copies, and a notice that the code was modified is
|
|
||||||
// included with the copyright notice. This software is provided "as is"
|
|
||||||
// without express or implied warranty, and with no claim as to its
|
|
||||||
// suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org/
|
// For more information, see http://www.boost.org/
|
||||||
|
|
||||||
|
@ -2,13 +2,9 @@
|
|||||||
|
|
||||||
// Copyright (C) 2001-2003 Douglas Gregor
|
// Copyright (C) 2001-2003 Douglas Gregor
|
||||||
|
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// Use, modification and distribution is subject to the Boost Software
|
||||||
// provided this copyright notice appears in all copies. Permission to modify
|
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// the code and to distribute modified code is granted provided this copyright
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// notice appears in all copies, and a notice that the code was modified is
|
|
||||||
// included with the copyright notice. This software is provided "as is"
|
|
||||||
// without express or implied warranty, and with no claim as to its
|
|
||||||
// suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org/
|
// For more information, see http://www.boost.org/
|
||||||
|
|
||||||
|
@ -1,15 +1,9 @@
|
|||||||
// Boost.Function library
|
// Boost.Function library
|
||||||
|
|
||||||
// Copyright (C) 2001 Doug Gregor (gregod@cs.rpi.edu)
|
// Copyright Doug Gregor 2001-2003. Use, modification and
|
||||||
//
|
// distribution is subject to the Boost Software License, Version
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// provided this copyright notice appears in all copies.
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// Permission to modify the code and to distribute modified code is granted
|
|
||||||
// provided this copyright notice appears in all copies, and a notice
|
|
||||||
// that the code was modified is included with the copyright notice.
|
|
||||||
//
|
|
||||||
// This software is provided "as is" without express or implied warranty,
|
|
||||||
// and with no claim as to its suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org
|
// For more information, see http://www.boost.org
|
||||||
|
|
||||||
|
@ -2,13 +2,9 @@
|
|||||||
|
|
||||||
// Copyright (C) 2001-2003 Douglas Gregor
|
// Copyright (C) 2001-2003 Douglas Gregor
|
||||||
|
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// Use, modification and distribution is subject to the Boost Software
|
||||||
// provided this copyright notice appears in all copies. Permission to modify
|
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// the code and to distribute modified code is granted provided this copyright
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// notice appears in all copies, and a notice that the code was modified is
|
|
||||||
// included with the copyright notice. This software is provided "as is"
|
|
||||||
// without express or implied warranty, and with no claim as to its
|
|
||||||
// suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org/
|
// For more information, see http://www.boost.org/
|
||||||
|
|
||||||
|
@ -2,13 +2,9 @@
|
|||||||
|
|
||||||
// Copyright (C) 2001-2003 Douglas Gregor
|
// Copyright (C) 2001-2003 Douglas Gregor
|
||||||
|
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// Use, modification and distribution is subject to the Boost Software
|
||||||
// provided this copyright notice appears in all copies. Permission to modify
|
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// the code and to distribute modified code is granted provided this copyright
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// notice appears in all copies, and a notice that the code was modified is
|
|
||||||
// included with the copyright notice. This software is provided "as is"
|
|
||||||
// without express or implied warranty, and with no claim as to its
|
|
||||||
// suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org/
|
// For more information, see http://www.boost.org/
|
||||||
|
|
||||||
|
@ -2,13 +2,9 @@
|
|||||||
|
|
||||||
// Copyright (C) 2001-2003 Douglas Gregor
|
// Copyright (C) 2001-2003 Douglas Gregor
|
||||||
|
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// Use, modification and distribution is subject to the Boost Software
|
||||||
// provided this copyright notice appears in all copies. Permission to modify
|
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// the code and to distribute modified code is granted provided this copyright
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// notice appears in all copies, and a notice that the code was modified is
|
|
||||||
// included with the copyright notice. This software is provided "as is"
|
|
||||||
// without express or implied warranty, and with no claim as to its
|
|
||||||
// suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org/
|
// For more information, see http://www.boost.org/
|
||||||
|
|
||||||
|
@ -2,13 +2,9 @@
|
|||||||
|
|
||||||
// Copyright (C) 2001-2003 Douglas Gregor
|
// Copyright (C) 2001-2003 Douglas Gregor
|
||||||
|
|
||||||
// Permission to copy, use, sell and distribute this software is granted
|
// Use, modification and distribution is subject to the Boost Software
|
||||||
// provided this copyright notice appears in all copies. Permission to modify
|
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// the code and to distribute modified code is granted provided this copyright
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
// notice appears in all copies, and a notice that the code was modified is
|
|
||||||
// included with the copyright notice. This software is provided "as is"
|
|
||||||
// without express or implied warranty, and with no claim as to its
|
|
||||||
// suitability for any purpose.
|
|
||||||
|
|
||||||
// For more information, see http://www.boost.org/
|
// For more information, see http://www.boost.org/
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user