Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r80462 - in trunk/libs/heap: examples test tools
From: tim_at_[hidden]
Date: 2012-09-09 09:07:25


Author: timblechmann
Date: 2012-09-09 09:07:24 EDT (Sun, 09 Sep 2012)
New Revision: 80462
URL: http://svn.boost.org/trac/boost/changeset/80462

Log:
heap: fix some inspection warnings

Text files modified:
   trunk/libs/heap/examples/interface.cpp | 2 +-
   trunk/libs/heap/test/binomial_heap_test.cpp | 8 ++++++++
   trunk/libs/heap/test/common_heap_tests.hpp | 8 ++++++++
   trunk/libs/heap/test/d_ary_heap_test.cpp | 8 ++++++++
   trunk/libs/heap/test/fibonacci_heap_test.cpp | 8 ++++++++
   trunk/libs/heap/test/merge_heap_tests.hpp | 8 ++++++++
   trunk/libs/heap/test/mutable_heap_test.cpp | 8 ++++++++
   trunk/libs/heap/test/mutable_heap_tests.hpp | 8 ++++++++
   trunk/libs/heap/test/pairing_heap_tests.cpp | 8 ++++++++
   trunk/libs/heap/test/priority_queue_test.cpp | 8 ++++++++
   trunk/libs/heap/test/skew_heap_test.cpp | 8 ++++++++
   trunk/libs/heap/test/stable_heap_tests.hpp | 8 ++++++++
   trunk/libs/heap/tools/heap_benchmarks.hpp | 8 ++++++++
   trunk/libs/heap/tools/throughput_benchmarks.cpp | 8 ++++++++
   14 files changed, 105 insertions(+), 1 deletions(-)

Modified: trunk/libs/heap/examples/interface.cpp
==============================================================================
--- trunk/libs/heap/examples/interface.cpp (original)
+++ trunk/libs/heap/examples/interface.cpp 2012-09-09 09:07:24 EDT (Sun, 09 Sep 2012)
@@ -258,4 +258,4 @@
     mutable_fixup_interface<fibonacci_heap<int> >();
 
     mutable_interface_handle_in_value();
-}
\ No newline at end of file
+}

Modified: trunk/libs/heap/test/binomial_heap_test.cpp
==============================================================================
--- trunk/libs/heap/test/binomial_heap_test.cpp (original)
+++ trunk/libs/heap/test/binomial_heap_test.cpp 2012-09-09 09:07:24 EDT (Sun, 09 Sep 2012)
@@ -1,3 +1,11 @@
+/*=============================================================================
+ Copyright (c) 2010 Tim Blechmann
+
+ Use, modification and distribution is subject to 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)
+=============================================================================*/
+
 #define BOOST_TEST_MAIN
 #ifdef BOOST_HEAP_INCLUDE_TESTS
 #include <boost/test/included/unit_test.hpp>

Modified: trunk/libs/heap/test/common_heap_tests.hpp
==============================================================================
--- trunk/libs/heap/test/common_heap_tests.hpp (original)
+++ trunk/libs/heap/test/common_heap_tests.hpp 2012-09-09 09:07:24 EDT (Sun, 09 Sep 2012)
@@ -1,3 +1,11 @@
+/*=============================================================================
+ Copyright (c) 2010 Tim Blechmann
+
+ Use, modification and distribution is subject to 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)
+=============================================================================*/
+
 #ifndef COMMON_HEAP_TESTS_HPP_INCLUDED
 #define COMMON_HEAP_TESTS_HPP_INCLUDED
 

Modified: trunk/libs/heap/test/d_ary_heap_test.cpp
==============================================================================
--- trunk/libs/heap/test/d_ary_heap_test.cpp (original)
+++ trunk/libs/heap/test/d_ary_heap_test.cpp 2012-09-09 09:07:24 EDT (Sun, 09 Sep 2012)
@@ -1,3 +1,11 @@
+/*=============================================================================
+ Copyright (c) 2010 Tim Blechmann
+
+ Use, modification and distribution is subject to 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)
+=============================================================================*/
+
 #define BOOST_TEST_MAIN
 #ifdef BOOST_HEAP_INCLUDE_TESTS
 #include <boost/test/included/unit_test.hpp>

Modified: trunk/libs/heap/test/fibonacci_heap_test.cpp
==============================================================================
--- trunk/libs/heap/test/fibonacci_heap_test.cpp (original)
+++ trunk/libs/heap/test/fibonacci_heap_test.cpp 2012-09-09 09:07:24 EDT (Sun, 09 Sep 2012)
@@ -1,3 +1,11 @@
+/*=============================================================================
+ Copyright (c) 2010 Tim Blechmann
+
+ Use, modification and distribution is subject to 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)
+=============================================================================*/
+
 #define BOOST_TEST_MAIN
 #ifdef BOOST_HEAP_INCLUDE_TESTS
 #include <boost/test/included/unit_test.hpp>

Modified: trunk/libs/heap/test/merge_heap_tests.hpp
==============================================================================
--- trunk/libs/heap/test/merge_heap_tests.hpp (original)
+++ trunk/libs/heap/test/merge_heap_tests.hpp 2012-09-09 09:07:24 EDT (Sun, 09 Sep 2012)
@@ -1,3 +1,11 @@
+/*=============================================================================
+ Copyright (c) 2010 Tim Blechmann
+
+ Use, modification and distribution is subject to 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)
+=============================================================================*/
+
 #include "common_heap_tests.hpp"
 #include <boost/heap/heap_merge.hpp>
 

Modified: trunk/libs/heap/test/mutable_heap_test.cpp
==============================================================================
--- trunk/libs/heap/test/mutable_heap_test.cpp (original)
+++ trunk/libs/heap/test/mutable_heap_test.cpp 2012-09-09 09:07:24 EDT (Sun, 09 Sep 2012)
@@ -1,3 +1,11 @@
+/*=============================================================================
+ Copyright (c) 2010 Tim Blechmann
+
+ Use, modification and distribution is subject to 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)
+=============================================================================*/
+
 #define BOOST_TEST_MAIN
 #include <boost/test/unit_test.hpp>
 

Modified: trunk/libs/heap/test/mutable_heap_tests.hpp
==============================================================================
--- trunk/libs/heap/test/mutable_heap_tests.hpp (original)
+++ trunk/libs/heap/test/mutable_heap_tests.hpp 2012-09-09 09:07:24 EDT (Sun, 09 Sep 2012)
@@ -1,3 +1,11 @@
+/*=============================================================================
+ Copyright (c) 2010 Tim Blechmann
+
+ Use, modification and distribution is subject to 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)
+=============================================================================*/
+
 // random uses boost.fusion, which clashes with boost.test
 //#define USE_BOOST_RANDOM
 

Modified: trunk/libs/heap/test/pairing_heap_tests.cpp
==============================================================================
--- trunk/libs/heap/test/pairing_heap_tests.cpp (original)
+++ trunk/libs/heap/test/pairing_heap_tests.cpp 2012-09-09 09:07:24 EDT (Sun, 09 Sep 2012)
@@ -1,3 +1,11 @@
+/*=============================================================================
+ Copyright (c) 2010 Tim Blechmann
+
+ Use, modification and distribution is subject to 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)
+=============================================================================*/
+
 #define BOOST_TEST_MAIN
 #ifdef BOOST_HEAP_INCLUDE_TESTS
 #include <boost/test/included/unit_test.hpp>

Modified: trunk/libs/heap/test/priority_queue_test.cpp
==============================================================================
--- trunk/libs/heap/test/priority_queue_test.cpp (original)
+++ trunk/libs/heap/test/priority_queue_test.cpp 2012-09-09 09:07:24 EDT (Sun, 09 Sep 2012)
@@ -1,3 +1,11 @@
+/*=============================================================================
+ Copyright (c) 2010 Tim Blechmann
+
+ Use, modification and distribution is subject to 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)
+=============================================================================*/
+
 #define BOOST_TEST_MAIN
 #include <boost/test/unit_test.hpp>
 

Modified: trunk/libs/heap/test/skew_heap_test.cpp
==============================================================================
--- trunk/libs/heap/test/skew_heap_test.cpp (original)
+++ trunk/libs/heap/test/skew_heap_test.cpp 2012-09-09 09:07:24 EDT (Sun, 09 Sep 2012)
@@ -1,3 +1,11 @@
+/*=============================================================================
+ Copyright (c) 2010 Tim Blechmann
+
+ Use, modification and distribution is subject to 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)
+=============================================================================*/
+
 #define BOOST_TEST_MAIN
 #ifdef BOOST_HEAP_INCLUDE_TESTS
 #include <boost/test/included/unit_test.hpp>

Modified: trunk/libs/heap/test/stable_heap_tests.hpp
==============================================================================
--- trunk/libs/heap/test/stable_heap_tests.hpp (original)
+++ trunk/libs/heap/test/stable_heap_tests.hpp 2012-09-09 09:07:24 EDT (Sun, 09 Sep 2012)
@@ -1,3 +1,11 @@
+/*=============================================================================
+ Copyright (c) 2010 Tim Blechmann
+
+ Use, modification and distribution is subject to 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)
+=============================================================================*/
+
 #include <boost/foreach.hpp>
 #include "common_heap_tests.hpp"
 

Modified: trunk/libs/heap/tools/heap_benchmarks.hpp
==============================================================================
--- trunk/libs/heap/tools/heap_benchmarks.hpp (original)
+++ trunk/libs/heap/tools/heap_benchmarks.hpp 2012-09-09 09:07:24 EDT (Sun, 09 Sep 2012)
@@ -1,3 +1,11 @@
+/*=============================================================================
+ Copyright (c) 2010 Tim Blechmann
+
+ Use, modification and distribution is subject to 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)
+=============================================================================*/
+
 #include <algorithm>
 #include <vector>
 

Modified: trunk/libs/heap/tools/throughput_benchmarks.cpp
==============================================================================
--- trunk/libs/heap/tools/throughput_benchmarks.cpp (original)
+++ trunk/libs/heap/tools/throughput_benchmarks.cpp 2012-09-09 09:07:24 EDT (Sun, 09 Sep 2012)
@@ -1,3 +1,11 @@
+/*=============================================================================
+ Copyright (c) 2010 Tim Blechmann
+
+ Use, modification and distribution is subject to 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)
+=============================================================================*/
+
 #include <iostream>
 #include <iomanip>
 


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