|
Boost-Commit : |
From: gennaro.prota_at_[hidden]
Date: 2008-07-13 15:08:33
Author: gennaro_prota
Date: 2008-07-13 15:08:31 EDT (Sun, 13 Jul 2008)
New Revision: 47392
URL: http://svn.boost.org/trac/boost/changeset/47392
Log:
dynamic_bitset: removed svn keywords and anchors; removed useless "see ... for documentation" pointers; fixed copyright notices and made all "comment headers" consistent; cleaned up trailing whitespaces
Properties modified:
trunk/boost/dynamic_bitset/config.hpp (contents, props changed)
trunk/boost/dynamic_bitset/dynamic_bitset.hpp (contents, props changed)
trunk/libs/dynamic_bitset/bitset_test.hpp (contents, props changed)
trunk/libs/dynamic_bitset/dyn_bitset_unit_tests1.cpp (contents, props changed)
trunk/libs/dynamic_bitset/dyn_bitset_unit_tests2.cpp (contents, props changed)
trunk/libs/dynamic_bitset/dyn_bitset_unit_tests3.cpp (contents, props changed)
trunk/libs/dynamic_bitset/dyn_bitset_unit_tests4.cpp (contents, props changed)
trunk/libs/dynamic_bitset/dynamic_bitset.html (props changed)
trunk/libs/dynamic_bitset/example/Jamfile (contents, props changed)
trunk/libs/dynamic_bitset/example/example1.cpp (props changed)
trunk/libs/dynamic_bitset/example/example2.cpp (contents, props changed)
trunk/libs/dynamic_bitset/example/example3.cpp (contents, props changed)
trunk/libs/dynamic_bitset/example/timing_tests.cpp (contents, props changed)
Text files modified:
trunk/boost/dynamic_bitset/config.hpp | 10 +++-------
trunk/boost/dynamic_bitset/dynamic_bitset.hpp | 21 ++++++++-------------
trunk/libs/dynamic_bitset/bitset_test.hpp | 8 +++-----
trunk/libs/dynamic_bitset/dyn_bitset_unit_tests1.cpp | 8 +++-----
trunk/libs/dynamic_bitset/dyn_bitset_unit_tests2.cpp | 8 +++-----
trunk/libs/dynamic_bitset/dyn_bitset_unit_tests3.cpp | 8 +++-----
trunk/libs/dynamic_bitset/dyn_bitset_unit_tests4.cpp | 8 +++-----
trunk/libs/dynamic_bitset/example/Jamfile | 8 +++-----
trunk/libs/dynamic_bitset/example/example2.cpp | 8 ++++----
trunk/libs/dynamic_bitset/example/example3.cpp | 4 ++--
trunk/libs/dynamic_bitset/example/timing_tests.cpp | 10 +++++-----
11 files changed, 40 insertions(+), 61 deletions(-)
Modified: trunk/boost/dynamic_bitset/config.hpp
==============================================================================
--- trunk/boost/dynamic_bitset/config.hpp (original)
+++ trunk/boost/dynamic_bitset/config.hpp 2008-07-13 15:08:31 EDT (Sun, 13 Jul 2008)
@@ -1,7 +1,7 @@
-// --------------------------------------------------
+// -----------------------------------------------------------
//
-// (C) Copyright Chuck Allison and Jeremy Siek 2001 - 2002.
-// (C) Copyright Gennaro Prota 2003 - 2006.
+// Copyright (c) 2001-2002 Chuck Allison and Jeremy Siek
+// Copyright (c) 2003-2006 Gennaro Prota
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
@@ -9,10 +9,6 @@
//
// -----------------------------------------------------------
-// See http://www.boost.org/libs/dynamic_bitset/ for documentation.
-//
-// $Revision$ $Date$ - $Name$
-
#ifndef BOOST_DYNAMIC_BITSET_CONFIG_HPP_GP_20040424
#define BOOST_DYNAMIC_BITSET_CONFIG_HPP_GP_20040424
Modified: trunk/boost/dynamic_bitset/dynamic_bitset.hpp
==============================================================================
--- trunk/boost/dynamic_bitset/dynamic_bitset.hpp (original)
+++ trunk/boost/dynamic_bitset/dynamic_bitset.hpp 2008-07-13 15:08:31 EDT (Sun, 13 Jul 2008)
@@ -1,7 +1,7 @@
-// --------------------------------------------------
+// -----------------------------------------------------------
//
-// (C) Copyright Chuck Allison and Jeremy Siek 2001 - 2002.
-// (C) Copyright Gennaro Prota 2003 - 2006.
+// Copyright (c) 2001-2002 Chuck Allison and Jeremy Siek
+// Copyright (c) 2003-2006 Gennaro Prota
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
@@ -9,11 +9,6 @@
//
// -----------------------------------------------------------
-// See http://www.boost.org/libs/dynamic_bitset/ for documentation.
-//
-// $Revision$ $Date$ - $Name$
-
-
#ifndef BOOST_DYNAMIC_BITSET_DYNAMIC_BITSET_HPP
#define BOOST_DYNAMIC_BITSET_DYNAMIC_BITSET_HPP
@@ -769,11 +764,11 @@
b[div] = b[0];
}
- // disable std::fill_n deprecated warning in MSVC++ 8.0 (warning C4996)
- // This will only work in MSVC++ 8.0 SP1, which brings up the warning
- // in the line of user code; otherwise, the warning will come up
- // in the line in the header itself, so if the user includes stdlib
- // headers before dynamic_bitset, he will still get the warning.
+ // disable std::fill_n deprecated warning in MSVC++ 8.0 (warning C4996)
+ // This will only work in MSVC++ 8.0 SP1, which brings up the warning
+ // in the line of user code; otherwise, the warning will come up
+ // in the line in the header itself, so if the user includes stdlib
+ // headers before dynamic_bitset, he will still get the warning.
#if defined(_MSC_VER) && _MSC_VER >= 1400
#pragma warning(push)
#pragma warning(disable:4996)
Modified: trunk/libs/dynamic_bitset/bitset_test.hpp
==============================================================================
--- trunk/libs/dynamic_bitset/bitset_test.hpp (original)
+++ trunk/libs/dynamic_bitset/bitset_test.hpp 2008-07-13 15:08:31 EDT (Sun, 13 Jul 2008)
@@ -1,14 +1,12 @@
-// --------------------------------------------------
-// (C) Copyright Jeremy Siek 2001.
-// (C) Copyright Gennaro Prota 2003 - 2006.
+// -----------------------------------------------------------
+// Copyright (c) 2001 Jeremy Siek
+// Copyright (c) 2003-2006 Gennaro Prota
//
// 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)
//
// -----------------------------------------------------------
-//
-// $Id$
#ifndef BOOST_BITSET_TEST_HPP_GP_20040319
#define BOOST_BITSET_TEST_HPP_GP_20040319
Modified: trunk/libs/dynamic_bitset/dyn_bitset_unit_tests1.cpp
==============================================================================
--- trunk/libs/dynamic_bitset/dyn_bitset_unit_tests1.cpp (original)
+++ trunk/libs/dynamic_bitset/dyn_bitset_unit_tests1.cpp 2008-07-13 15:08:31 EDT (Sun, 13 Jul 2008)
@@ -1,14 +1,12 @@
-// --------------------------------------------------------
-// (C) Copyright Jeremy Siek 2001.
-// (C) Copyright Gennaro Prota 2003 - 2006.
+// -----------------------------------------------------------
+// Copyright (c) 2001 Jeremy Siek
+// Copyright (c) 2003-2006 Gennaro Prota
//
// 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)
//
// -----------------------------------------------------------
-//
-// $Id$
#include "bitset_test.hpp"
#include "boost/dynamic_bitset/dynamic_bitset.hpp"
Modified: trunk/libs/dynamic_bitset/dyn_bitset_unit_tests2.cpp
==============================================================================
--- trunk/libs/dynamic_bitset/dyn_bitset_unit_tests2.cpp (original)
+++ trunk/libs/dynamic_bitset/dyn_bitset_unit_tests2.cpp 2008-07-13 15:08:31 EDT (Sun, 13 Jul 2008)
@@ -1,14 +1,12 @@
-// --------------------------------------------------------
-// (C) Copyright Jeremy Siek 2001.
-// (C) Copyright Gennaro Prota 2003 - 2006.
+// -----------------------------------------------------------
+// Copyright (c) 2001 Jeremy Siek
+// Copyright (c) 2003-2006 Gennaro Prota
//
// 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)
//
// -----------------------------------------------------------
-//
-// $Id$
#include "bitset_test.hpp"
#include "boost/dynamic_bitset/dynamic_bitset.hpp"
Modified: trunk/libs/dynamic_bitset/dyn_bitset_unit_tests3.cpp
==============================================================================
--- trunk/libs/dynamic_bitset/dyn_bitset_unit_tests3.cpp (original)
+++ trunk/libs/dynamic_bitset/dyn_bitset_unit_tests3.cpp 2008-07-13 15:08:31 EDT (Sun, 13 Jul 2008)
@@ -1,14 +1,12 @@
-// --------------------------------------------------------
-// (C) Copyright Jeremy Siek 2001.
-// (C) Copyright Gennaro Prota 2003 - 2006.
+// -----------------------------------------------------------
+// Copyright (c) 2001 Jeremy Siek
+// Copyright (c) 2003-2006 Gennaro Prota
//
// 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)
//
// -----------------------------------------------------------
-//
-// $Id$
#include <assert.h>
#include "bitset_test.hpp"
Modified: trunk/libs/dynamic_bitset/dyn_bitset_unit_tests4.cpp
==============================================================================
--- trunk/libs/dynamic_bitset/dyn_bitset_unit_tests4.cpp (original)
+++ trunk/libs/dynamic_bitset/dyn_bitset_unit_tests4.cpp 2008-07-13 15:08:31 EDT (Sun, 13 Jul 2008)
@@ -1,14 +1,12 @@
-// --------------------------------------------------------
-// (C) Copyright Jeremy Siek 2001.
-// (C) Copyright Gennaro Prota 2003 - 2006.
+// -----------------------------------------------------------
+// Copyright (c) 2001 Jeremy Siek
+// Copyright (c) 2003-2006 Gennaro Prota
//
// 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)
//
// -----------------------------------------------------------
-//
-// $Id$
#include <fstream>
#include <string>
Modified: trunk/libs/dynamic_bitset/example/Jamfile
==============================================================================
--- trunk/libs/dynamic_bitset/example/Jamfile (original)
+++ trunk/libs/dynamic_bitset/example/Jamfile 2008-07-13 15:08:31 EDT (Sun, 13 Jul 2008)
@@ -1,13 +1,11 @@
-// (C) Copyright Gennaro Prota 2002
+// -----------------------------------------------------------
+// Copyright (c) 2002 Gennaro Prota
//
// 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)
//
-// ----------------------------------------------------------
-//
-// $Id$
-
+// -----------------------------------------------------------
exe timing_tests
: timing_tests.cpp
;
Modified: trunk/libs/dynamic_bitset/example/example2.cpp
==============================================================================
--- trunk/libs/dynamic_bitset/example/example2.cpp (original)
+++ trunk/libs/dynamic_bitset/example/example2.cpp 2008-07-13 15:08:31 EDT (Sun, 13 Jul 2008)
@@ -16,16 +16,16 @@
int main()
{
- const boost::dynamic_bitset<> b0(2, 0ul);
+ const boost::dynamic_bitset<> b0(2, 0ul);
std::cout << "bits(0) = " << b0 << std::endl;
- const boost::dynamic_bitset<> b1(2, 1ul);
+ const boost::dynamic_bitset<> b1(2, 1ul);
std::cout << "bits(1) = " << b1 << std::endl;
- const boost::dynamic_bitset<> b2(2, 2ul);
+ const boost::dynamic_bitset<> b2(2, 2ul);
std::cout << "bits(2) = " << b2 << std::endl;
- const boost::dynamic_bitset<> b3(2, 3ul);
+ const boost::dynamic_bitset<> b3(2, 3ul);
std::cout << "bits(3) = " << b3 << std::endl;
return 0;
Modified: trunk/libs/dynamic_bitset/example/example3.cpp
==============================================================================
--- trunk/libs/dynamic_bitset/example/example3.cpp (original)
+++ trunk/libs/dynamic_bitset/example/example3.cpp 2008-07-13 15:08:31 EDT (Sun, 13 Jul 2008)
@@ -27,7 +27,7 @@
int main()
{
- boost::dynamic_bitset<> mask(12, 2730ul);
+ boost::dynamic_bitset<> mask(12, 2730ul);
std::cout << "mask = " << mask << std::endl;
boost::dynamic_bitset<> x;
@@ -54,7 +54,7 @@
} else {
std::cout << "(overflow exception)";
}
-
+
std::cout << std::endl;
mask.resize(sz);
Modified: trunk/libs/dynamic_bitset/example/timing_tests.cpp
==============================================================================
--- trunk/libs/dynamic_bitset/example/timing_tests.cpp (original)
+++ trunk/libs/dynamic_bitset/example/timing_tests.cpp 2008-07-13 15:08:31 EDT (Sun, 13 Jul 2008)
@@ -1,7 +1,6 @@
// -----------------------------------------------------------
-// boost::dynamic_bitset timing tests
-
-// (C) Copyright Gennaro Prota 2003 - 2004.
+//
+// Copyright (c) 2003-2004 Gennaro Prota
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
@@ -9,6 +8,8 @@
//
// -----------------------------------------------------------
+// boost::dynamic_bitset timing tests
+//
// NOTE:
// ~~~~~
// This is a preliminary, incomplete version.
@@ -25,8 +26,7 @@
//
//
// -----------------------------------------------------------------------//
-//
-// $Id$
+
#include "boost/config.hpp"
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