diff --git a/ChangeLog b/ChangeLog index 9037413..920b842 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ -Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost +Copyright (c) 2001-2011 Hartmut Kaiser. 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) ------------------------------------------------------------------------------- @@ -32,6 +32,16 @@ Boost V1.46.0 - Fixed a problem with object like macros, which when being adjacent to a parenthesis, caused the parenthesis to disappear when the macro expansion was suppressed by the expanding_object_like_macro() hook function. +- Fixed a bug in pragma option(preserve), missing to set to preserve=1 if + after the previous value was preserve=2. +- Changed the --preserve option of the wave tool to interprete the integer + argument in a slightly different way: + 0: no whitespace is preserved, + 1: only begin of line whitespace is preserved, + 2: only begin of line whitespace and comments are preserved, + 3: all whitespace is preserved + The #pragma wave option(preserve) now supports these arguments: + [0|1|2|3|push|pop]. Boost V1.45.0 - V2.1.0 diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index 6ddb35b..ffc8e21 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -4,7 +4,7 @@ # # http://www.boost.org/ # -# Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost +# Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/samples/cpp_tokens/cpp_tokens.cpp b/samples/cpp_tokens/cpp_tokens.cpp index d1403dc..1ca064c 100644 --- a/samples/cpp_tokens/cpp_tokens.cpp +++ b/samples/cpp_tokens/cpp_tokens.cpp @@ -8,7 +8,7 @@ http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/samples/cpp_tokens/cpp_tokens.hpp b/samples/cpp_tokens/cpp_tokens.hpp index c6fdcf2..61a862f 100644 --- a/samples/cpp_tokens/cpp_tokens.hpp +++ b/samples/cpp_tokens/cpp_tokens.hpp @@ -8,7 +8,7 @@ http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/samples/cpp_tokens/cpp_tokens_config.hpp b/samples/cpp_tokens/cpp_tokens_config.hpp index a5b7cb9..3b039ed 100644 --- a/samples/cpp_tokens/cpp_tokens_config.hpp +++ b/samples/cpp_tokens/cpp_tokens_config.hpp @@ -6,7 +6,7 @@ http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/samples/cpp_tokens/instantiate_cpp_exprgrammar.cpp b/samples/cpp_tokens/instantiate_cpp_exprgrammar.cpp index ede6937..544f0b4 100644 --- a/samples/cpp_tokens/instantiate_cpp_exprgrammar.cpp +++ b/samples/cpp_tokens/instantiate_cpp_exprgrammar.cpp @@ -7,7 +7,7 @@ http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/samples/cpp_tokens/instantiate_cpp_grammar.cpp b/samples/cpp_tokens/instantiate_cpp_grammar.cpp index 496d9a7..b0fe989 100644 --- a/samples/cpp_tokens/instantiate_cpp_grammar.cpp +++ b/samples/cpp_tokens/instantiate_cpp_grammar.cpp @@ -6,7 +6,7 @@ http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/samples/cpp_tokens/instantiate_cpp_literalgrs.cpp b/samples/cpp_tokens/instantiate_cpp_literalgrs.cpp index 106815b..8d98b02 100644 --- a/samples/cpp_tokens/instantiate_cpp_literalgrs.cpp +++ b/samples/cpp_tokens/instantiate_cpp_literalgrs.cpp @@ -5,7 +5,7 @@ http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/samples/cpp_tokens/instantiate_defined_grammar.cpp b/samples/cpp_tokens/instantiate_defined_grammar.cpp index a82be05..7bbb9fd 100644 --- a/samples/cpp_tokens/instantiate_defined_grammar.cpp +++ b/samples/cpp_tokens/instantiate_defined_grammar.cpp @@ -3,7 +3,7 @@ http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/samples/cpp_tokens/instantiate_slex_lexer.cpp b/samples/cpp_tokens/instantiate_slex_lexer.cpp index 59dedd1..d688f31 100644 --- a/samples/cpp_tokens/instantiate_slex_lexer.cpp +++ b/samples/cpp_tokens/instantiate_slex_lexer.cpp @@ -6,7 +6,7 @@ http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/samples/cpp_tokens/slex/cpp_slex_lexer.hpp b/samples/cpp_tokens/slex/cpp_slex_lexer.hpp index a728f57..6dbcea1 100644 --- a/samples/cpp_tokens/slex/cpp_slex_lexer.hpp +++ b/samples/cpp_tokens/slex/cpp_slex_lexer.hpp @@ -5,7 +5,7 @@ http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/samples/cpp_tokens/slex/lexer.hpp b/samples/cpp_tokens/slex/lexer.hpp index 0f95d4e..5d773a0 100644 --- a/samples/cpp_tokens/slex/lexer.hpp +++ b/samples/cpp_tokens/slex/lexer.hpp @@ -6,7 +6,7 @@ http://www.boost.org/ Copyright (c) 2001, Daniel C. Nuffer. - Copyright (c) 2001-2010 Hartmut Kaiser. + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/samples/cpp_tokens/slex_interface.hpp b/samples/cpp_tokens/slex_interface.hpp index ebfcd40..15107d1 100644 --- a/samples/cpp_tokens/slex_interface.hpp +++ b/samples/cpp_tokens/slex_interface.hpp @@ -5,7 +5,7 @@ http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/samples/cpp_tokens/slex_iterator.hpp b/samples/cpp_tokens/slex_iterator.hpp index 61e27bb..1307ec2 100644 --- a/samples/cpp_tokens/slex_iterator.hpp +++ b/samples/cpp_tokens/slex_iterator.hpp @@ -5,7 +5,7 @@ http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/samples/cpp_tokens/slex_token.hpp b/samples/cpp_tokens/slex_token.hpp index 74a32e0..0818362 100644 --- a/samples/cpp_tokens/slex_token.hpp +++ b/samples/cpp_tokens/slex_token.hpp @@ -5,7 +5,7 @@ http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/samples/custom_directives/custom_directives.cpp b/samples/custom_directives/custom_directives.cpp index b952687..33ffaa6 100644 --- a/samples/custom_directives/custom_directives.cpp +++ b/samples/custom_directives/custom_directives.cpp @@ -4,7 +4,7 @@ http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/samples/custom_directives/custom_directives.hpp b/samples/custom_directives/custom_directives.hpp index 0598e08..399c0e2 100644 --- a/samples/custom_directives/custom_directives.hpp +++ b/samples/custom_directives/custom_directives.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/samples/emit_custom_line_directives/emit_custom_line_directives.cpp b/samples/emit_custom_line_directives/emit_custom_line_directives.cpp index 1352812..f2aba54 100644 --- a/samples/emit_custom_line_directives/emit_custom_line_directives.cpp +++ b/samples/emit_custom_line_directives/emit_custom_line_directives.cpp @@ -4,7 +4,7 @@ http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/samples/emit_custom_line_directives/emit_custom_line_directives.hpp b/samples/emit_custom_line_directives/emit_custom_line_directives.hpp index 7915eb0..d353a44 100644 --- a/samples/emit_custom_line_directives/emit_custom_line_directives.hpp +++ b/samples/emit_custom_line_directives/emit_custom_line_directives.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/src/cpplexer/re2clex/aq.cpp b/src/cpplexer/re2clex/aq.cpp index 5110753..b81d5b3 100644 --- a/src/cpplexer/re2clex/aq.cpp +++ b/src/cpplexer/re2clex/aq.cpp @@ -3,7 +3,7 @@ http://www.boost.org/ Copyright (c) 2001 Daniel C. Nuffer. - Copyright (c) 2001-2010 Hartmut Kaiser. + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/src/cpplexer/re2clex/cpp.re b/src/cpplexer/re2clex/cpp.re index 364a945..217eff6 100644 --- a/src/cpplexer/re2clex/cpp.re +++ b/src/cpplexer/re2clex/cpp.re @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library Copyright (c) 2001 Daniel C. Nuffer - Copyright (c) 2001-2010 Hartmut Kaiser. + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/src/cpplexer/re2clex/cpp_re.cpp b/src/cpplexer/re2clex/cpp_re.cpp index ff2c341..69d77c3 100644 --- a/src/cpplexer/re2clex/cpp_re.cpp +++ b/src/cpplexer/re2clex/cpp_re.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library Copyright (c) 2001 Daniel C. Nuffer - Copyright (c) 2001-2010 Hartmut Kaiser. + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/src/cpplexer/re2clex/cpp_re.inc b/src/cpplexer/re2clex/cpp_re.inc index 18bcc55..afb7fc1 100644 --- a/src/cpplexer/re2clex/cpp_re.inc +++ b/src/cpplexer/re2clex/cpp_re.inc @@ -1,10 +1,10 @@ -/* Generated by re2c 0.13.5 on Wed Dec 08 21:06:49 2010 */ +/* Generated by re2c 0.13.5 on Sun Jan 09 15:38:23 2011 */ #line 1 "cpp.re" /*============================================================================= Boost.Wave: A Standard compliant C++ preprocessor library Copyright (c) 2001 Daniel C. Nuffer - Copyright (c) 2001-2010 Hartmut Kaiser. + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/src/cpplexer/re2clex/strict_cpp.re b/src/cpplexer/re2clex/strict_cpp.re index 172499c..2e27cb5 100644 --- a/src/cpplexer/re2clex/strict_cpp.re +++ b/src/cpplexer/re2clex/strict_cpp.re @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library Copyright (c) 2001 Daniel C. Nuffer - Copyright (c) 2001-2010 Hartmut Kaiser. + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/src/cpplexer/re2clex/strict_cpp_re.inc b/src/cpplexer/re2clex/strict_cpp_re.inc index 3a22a13..87b80ff 100644 --- a/src/cpplexer/re2clex/strict_cpp_re.inc +++ b/src/cpplexer/re2clex/strict_cpp_re.inc @@ -1,10 +1,10 @@ -/* Generated by re2c 0.13.5 on Wed Dec 08 20:59:13 2010 */ +/* Generated by re2c 0.13.5 on Sun Jan 09 15:38:28 2011 */ #line 1 "strict_cpp.re" /*============================================================================= Boost.Wave: A Standard compliant C++ preprocessor library Copyright (c) 2001 Daniel C. Nuffer - Copyright (c) 2001-2010 Hartmut Kaiser. + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/src/instantiate_cpp_exprgrammar.cpp b/src/instantiate_cpp_exprgrammar.cpp index 9bec6f0..7318c29 100644 --- a/src/instantiate_cpp_exprgrammar.cpp +++ b/src/instantiate_cpp_exprgrammar.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/src/instantiate_cpp_grammar.cpp b/src/instantiate_cpp_grammar.cpp index d02ba31..89cc3d7 100644 --- a/src/instantiate_cpp_grammar.cpp +++ b/src/instantiate_cpp_grammar.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/src/instantiate_cpp_literalgrs.cpp b/src/instantiate_cpp_literalgrs.cpp index 31c5204..96ef476 100644 --- a/src/instantiate_cpp_literalgrs.cpp +++ b/src/instantiate_cpp_literalgrs.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/src/instantiate_defined_grammar.cpp b/src/instantiate_defined_grammar.cpp index b5e0813..b7afe3f 100644 --- a/src/instantiate_defined_grammar.cpp +++ b/src/instantiate_defined_grammar.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/src/instantiate_predef_macros.cpp b/src/instantiate_predef_macros.cpp index 9021744..758ad97 100644 --- a/src/instantiate_predef_macros.cpp +++ b/src/instantiate_predef_macros.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/src/instantiate_re2c_lexer.cpp b/src/instantiate_re2c_lexer.cpp index 8aa0633..cd1b889 100644 --- a/src/instantiate_re2c_lexer.cpp +++ b/src/instantiate_re2c_lexer.cpp @@ -4,7 +4,7 @@ http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/src/instantiate_re2c_lexer_str.cpp b/src/instantiate_re2c_lexer_str.cpp index e6d1a9d..138ed6c 100644 --- a/src/instantiate_re2c_lexer_str.cpp +++ b/src/instantiate_re2c_lexer_str.cpp @@ -4,7 +4,7 @@ http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/src/token_ids.cpp b/src/token_ids.cpp index 81f6eea..35e7725 100644 --- a/src/token_ids.cpp +++ b/src/token_ids.cpp @@ -5,7 +5,7 @@ http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/src/wave_config_constant.cpp b/src/wave_config_constant.cpp index 5967ae0..86a9f82 100644 --- a/src/wave_config_constant.cpp +++ b/src/wave_config_constant.cpp @@ -4,7 +4,7 @@ http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/build/Jamfile.v2 b/test/build/Jamfile.v2 index 9a042db..17eaf51 100644 --- a/test/build/Jamfile.v2 +++ b/test/build/Jamfile.v2 @@ -4,7 +4,7 @@ # # http://www.boost.org/ # -# Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost +# Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testlexers/cpp_tokens.hpp b/test/testlexers/cpp_tokens.hpp index 79997e6..a14ca28 100644 --- a/test/testlexers/cpp_tokens.hpp +++ b/test/testlexers/cpp_tokens.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testlexers/test_lexertl_lexer.cpp b/test/testlexers/test_lexertl_lexer.cpp index f5c6cba..19fce1f 100644 --- a/test/testlexers/test_lexertl_lexer.cpp +++ b/test/testlexers/test_lexertl_lexer.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testlexers/test_re2c_lexer.cpp b/test/testlexers/test_re2c_lexer.cpp index bdc178c..ccc837d 100644 --- a/test/testlexers/test_re2c_lexer.cpp +++ b/test/testlexers/test_re2c_lexer.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testlexers/test_slex_lexer.cpp b/test/testlexers/test_slex_lexer.cpp index 5ca359a..38dfc4a 100644 --- a/test/testlexers/test_slex_lexer.cpp +++ b/test/testlexers/test_slex_lexer.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testlexers/test_xlex_lexer.cpp b/test/testlexers/test_xlex_lexer.cpp index 7604895..2763b5f 100644 --- a/test/testlexers/test_xlex_lexer.cpp +++ b/test/testlexers/test_xlex_lexer.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/cmd_line_utils.hpp b/test/testwave/cmd_line_utils.hpp index 5b39836..58dd4a5 100644 --- a/test/testwave/cmd_line_utils.hpp +++ b/test/testwave/cmd_line_utils.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/collect_hooks_information.hpp b/test/testwave/collect_hooks_information.hpp index 4ab7b26..5db7864 100644 --- a/test/testwave/collect_hooks_information.hpp +++ b/test/testwave/collect_hooks_information.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_001.cpp b/test/testwave/testfiles/t_1_001.cpp index c98681b..ab52bb5 100644 --- a/test/testwave/testfiles/t_1_001.cpp +++ b/test/testwave/testfiles/t_1_001.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_002.cpp b/test/testwave/testfiles/t_1_002.cpp index 58c1c2e..072134b 100644 --- a/test/testwave/testfiles/t_1_002.cpp +++ b/test/testwave/testfiles/t_1_002.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_003.cpp b/test/testwave/testfiles/t_1_003.cpp index 9e2bb76..3d963a6 100644 --- a/test/testwave/testfiles/t_1_003.cpp +++ b/test/testwave/testfiles/t_1_003.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_004.cpp b/test/testwave/testfiles/t_1_004.cpp index 71ec3fa..391093c 100644 --- a/test/testwave/testfiles/t_1_004.cpp +++ b/test/testwave/testfiles/t_1_004.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_005.cpp b/test/testwave/testfiles/t_1_005.cpp index 604ff2a..37e6bb9 100644 --- a/test/testwave/testfiles/t_1_005.cpp +++ b/test/testwave/testfiles/t_1_005.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_006.cpp b/test/testwave/testfiles/t_1_006.cpp index c77b0ad..5378138 100644 --- a/test/testwave/testfiles/t_1_006.cpp +++ b/test/testwave/testfiles/t_1_006.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_007.cpp b/test/testwave/testfiles/t_1_007.cpp index 9103421..7fe8cb5 100644 --- a/test/testwave/testfiles/t_1_007.cpp +++ b/test/testwave/testfiles/t_1_007.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_008.cpp b/test/testwave/testfiles/t_1_008.cpp index 37ca522..3f250fc 100644 --- a/test/testwave/testfiles/t_1_008.cpp +++ b/test/testwave/testfiles/t_1_008.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_009.cpp b/test/testwave/testfiles/t_1_009.cpp index 2bce625..aa26130 100644 --- a/test/testwave/testfiles/t_1_009.cpp +++ b/test/testwave/testfiles/t_1_009.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_010.cpp b/test/testwave/testfiles/t_1_010.cpp index dead71a..90a0c57 100644 --- a/test/testwave/testfiles/t_1_010.cpp +++ b/test/testwave/testfiles/t_1_010.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_011.cpp b/test/testwave/testfiles/t_1_011.cpp index 1bda9d2..ec83b97 100644 --- a/test/testwave/testfiles/t_1_011.cpp +++ b/test/testwave/testfiles/t_1_011.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_012.cpp b/test/testwave/testfiles/t_1_012.cpp index 8b08cd8..c9f7c7d 100644 --- a/test/testwave/testfiles/t_1_012.cpp +++ b/test/testwave/testfiles/t_1_012.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_013.cpp b/test/testwave/testfiles/t_1_013.cpp index e12c07f..b8f6da3 100644 --- a/test/testwave/testfiles/t_1_013.cpp +++ b/test/testwave/testfiles/t_1_013.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_014.cpp b/test/testwave/testfiles/t_1_014.cpp index c259aa3..3907e17 100644 --- a/test/testwave/testfiles/t_1_014.cpp +++ b/test/testwave/testfiles/t_1_014.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_015.cpp b/test/testwave/testfiles/t_1_015.cpp index 6e1bcf2..9e056fe 100644 --- a/test/testwave/testfiles/t_1_015.cpp +++ b/test/testwave/testfiles/t_1_015.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_016.cpp b/test/testwave/testfiles/t_1_016.cpp index c700db8..e11100e 100644 --- a/test/testwave/testfiles/t_1_016.cpp +++ b/test/testwave/testfiles/t_1_016.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_017.cpp b/test/testwave/testfiles/t_1_017.cpp index 25f6875..536066e 100644 --- a/test/testwave/testfiles/t_1_017.cpp +++ b/test/testwave/testfiles/t_1_017.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_018.cpp b/test/testwave/testfiles/t_1_018.cpp index 18186ca..938c59e 100644 --- a/test/testwave/testfiles/t_1_018.cpp +++ b/test/testwave/testfiles/t_1_018.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_019.cpp b/test/testwave/testfiles/t_1_019.cpp index 3108e66..924eb6a 100644 --- a/test/testwave/testfiles/t_1_019.cpp +++ b/test/testwave/testfiles/t_1_019.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_020.cpp b/test/testwave/testfiles/t_1_020.cpp index 47c2f77..480aa2b 100644 --- a/test/testwave/testfiles/t_1_020.cpp +++ b/test/testwave/testfiles/t_1_020.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_021.cpp b/test/testwave/testfiles/t_1_021.cpp index b35c0c9..e95dd28 100644 --- a/test/testwave/testfiles/t_1_021.cpp +++ b/test/testwave/testfiles/t_1_021.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_022.cpp b/test/testwave/testfiles/t_1_022.cpp index 0ff493a..053e8bd 100644 --- a/test/testwave/testfiles/t_1_022.cpp +++ b/test/testwave/testfiles/t_1_022.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_023.cpp b/test/testwave/testfiles/t_1_023.cpp index bed3315..82dccbc 100644 --- a/test/testwave/testfiles/t_1_023.cpp +++ b/test/testwave/testfiles/t_1_023.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_024.cpp b/test/testwave/testfiles/t_1_024.cpp index 1993ba3..7aba411 100644 --- a/test/testwave/testfiles/t_1_024.cpp +++ b/test/testwave/testfiles/t_1_024.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_025.cpp b/test/testwave/testfiles/t_1_025.cpp index 6f656dc..a4b64c8 100644 --- a/test/testwave/testfiles/t_1_025.cpp +++ b/test/testwave/testfiles/t_1_025.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_026.cpp b/test/testwave/testfiles/t_1_026.cpp index 8545f54..064c5cc 100644 --- a/test/testwave/testfiles/t_1_026.cpp +++ b/test/testwave/testfiles/t_1_026.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_027.cpp b/test/testwave/testfiles/t_1_027.cpp index d0f7dd0..eca0e90 100644 --- a/test/testwave/testfiles/t_1_027.cpp +++ b/test/testwave/testfiles/t_1_027.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_028.cpp b/test/testwave/testfiles/t_1_028.cpp index f365f83..b2aca29 100644 --- a/test/testwave/testfiles/t_1_028.cpp +++ b/test/testwave/testfiles/t_1_028.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_029.cpp b/test/testwave/testfiles/t_1_029.cpp index 2ac9ca8..e4ba982 100644 --- a/test/testwave/testfiles/t_1_029.cpp +++ b/test/testwave/testfiles/t_1_029.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_030.cpp b/test/testwave/testfiles/t_1_030.cpp index 2828a6c..d5a5fa1 100644 --- a/test/testwave/testfiles/t_1_030.cpp +++ b/test/testwave/testfiles/t_1_030.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_031.cpp b/test/testwave/testfiles/t_1_031.cpp index cdacac6..338f532 100644 --- a/test/testwave/testfiles/t_1_031.cpp +++ b/test/testwave/testfiles/t_1_031.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_032.cpp b/test/testwave/testfiles/t_1_032.cpp index bcfcc2e..26d75ac 100644 --- a/test/testwave/testfiles/t_1_032.cpp +++ b/test/testwave/testfiles/t_1_032.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_033.cpp b/test/testwave/testfiles/t_1_033.cpp index ff08c65..15a8c61 100644 --- a/test/testwave/testfiles/t_1_033.cpp +++ b/test/testwave/testfiles/t_1_033.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_034.cpp b/test/testwave/testfiles/t_1_034.cpp index 6ff097b..4965051 100644 --- a/test/testwave/testfiles/t_1_034.cpp +++ b/test/testwave/testfiles/t_1_034.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_035.cpp b/test/testwave/testfiles/t_1_035.cpp index 45e31bf..2bdea91 100644 --- a/test/testwave/testfiles/t_1_035.cpp +++ b/test/testwave/testfiles/t_1_035.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_036.cpp b/test/testwave/testfiles/t_1_036.cpp index eb66690..a799c1a 100644 --- a/test/testwave/testfiles/t_1_036.cpp +++ b/test/testwave/testfiles/t_1_036.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_037.cpp b/test/testwave/testfiles/t_1_037.cpp index 45008c0..c7484e9 100644 --- a/test/testwave/testfiles/t_1_037.cpp +++ b/test/testwave/testfiles/t_1_037.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_1_038.cpp b/test/testwave/testfiles/t_1_038.cpp index a97af4d..c6c718f 100644 --- a/test/testwave/testfiles/t_1_038.cpp +++ b/test/testwave/testfiles/t_1_038.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_001.cpp b/test/testwave/testfiles/t_2_001.cpp index d2b2e3b..1f5e6fd 100644 --- a/test/testwave/testfiles/t_2_001.cpp +++ b/test/testwave/testfiles/t_2_001.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_002.cpp b/test/testwave/testfiles/t_2_002.cpp index 70589ac..6b6744c 100644 --- a/test/testwave/testfiles/t_2_002.cpp +++ b/test/testwave/testfiles/t_2_002.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_003.cpp b/test/testwave/testfiles/t_2_003.cpp index 42bb7af..cae1516 100644 --- a/test/testwave/testfiles/t_2_003.cpp +++ b/test/testwave/testfiles/t_2_003.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_004.cpp b/test/testwave/testfiles/t_2_004.cpp index fed608d..957ba5f 100644 --- a/test/testwave/testfiles/t_2_004.cpp +++ b/test/testwave/testfiles/t_2_004.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_005.cpp b/test/testwave/testfiles/t_2_005.cpp index 828afb0..75a5f87 100644 --- a/test/testwave/testfiles/t_2_005.cpp +++ b/test/testwave/testfiles/t_2_005.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_006.cpp b/test/testwave/testfiles/t_2_006.cpp index b02c865..113b2db 100644 --- a/test/testwave/testfiles/t_2_006.cpp +++ b/test/testwave/testfiles/t_2_006.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_007.cpp b/test/testwave/testfiles/t_2_007.cpp index db12bec..b1a4fe7 100644 --- a/test/testwave/testfiles/t_2_007.cpp +++ b/test/testwave/testfiles/t_2_007.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_008.cpp b/test/testwave/testfiles/t_2_008.cpp index 8371a9c..d1f40d3 100644 --- a/test/testwave/testfiles/t_2_008.cpp +++ b/test/testwave/testfiles/t_2_008.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_009.cpp b/test/testwave/testfiles/t_2_009.cpp index d52b4f8..1013fd2 100644 --- a/test/testwave/testfiles/t_2_009.cpp +++ b/test/testwave/testfiles/t_2_009.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_010.cpp b/test/testwave/testfiles/t_2_010.cpp index a773c6b..9e86994 100644 --- a/test/testwave/testfiles/t_2_010.cpp +++ b/test/testwave/testfiles/t_2_010.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_011.cpp b/test/testwave/testfiles/t_2_011.cpp index afb4b3b..3200b7d 100644 --- a/test/testwave/testfiles/t_2_011.cpp +++ b/test/testwave/testfiles/t_2_011.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_012.cpp b/test/testwave/testfiles/t_2_012.cpp index cdf3653..3e6005a 100644 --- a/test/testwave/testfiles/t_2_012.cpp +++ b/test/testwave/testfiles/t_2_012.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_013.cpp b/test/testwave/testfiles/t_2_013.cpp index 2831ee4..a0733fa 100644 --- a/test/testwave/testfiles/t_2_013.cpp +++ b/test/testwave/testfiles/t_2_013.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_014.cpp b/test/testwave/testfiles/t_2_014.cpp index 4b6bf3a..3eb4d08 100644 --- a/test/testwave/testfiles/t_2_014.cpp +++ b/test/testwave/testfiles/t_2_014.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_015.cpp b/test/testwave/testfiles/t_2_015.cpp index aeea3e1..e8eb007 100644 --- a/test/testwave/testfiles/t_2_015.cpp +++ b/test/testwave/testfiles/t_2_015.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_016.cpp b/test/testwave/testfiles/t_2_016.cpp index ba8628c..da703d8 100644 --- a/test/testwave/testfiles/t_2_016.cpp +++ b/test/testwave/testfiles/t_2_016.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_017.cpp b/test/testwave/testfiles/t_2_017.cpp index f4fd677..0f0540c 100644 --- a/test/testwave/testfiles/t_2_017.cpp +++ b/test/testwave/testfiles/t_2_017.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_018.cpp b/test/testwave/testfiles/t_2_018.cpp index 5fda33e..8fac503 100644 --- a/test/testwave/testfiles/t_2_018.cpp +++ b/test/testwave/testfiles/t_2_018.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_019.cpp b/test/testwave/testfiles/t_2_019.cpp index 45170d5..906d66f 100644 --- a/test/testwave/testfiles/t_2_019.cpp +++ b/test/testwave/testfiles/t_2_019.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_019_001.hpp b/test/testwave/testfiles/t_2_019_001.hpp index e5a3e91..e6ff13f 100644 --- a/test/testwave/testfiles/t_2_019_001.hpp +++ b/test/testwave/testfiles/t_2_019_001.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_019_002.hpp b/test/testwave/testfiles/t_2_019_002.hpp index 5fbd1ea..0822ab6 100644 --- a/test/testwave/testfiles/t_2_019_002.hpp +++ b/test/testwave/testfiles/t_2_019_002.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_019_003.hpp b/test/testwave/testfiles/t_2_019_003.hpp index 8e5d20d..2d1bcc4 100644 --- a/test/testwave/testfiles/t_2_019_003.hpp +++ b/test/testwave/testfiles/t_2_019_003.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_020.cpp b/test/testwave/testfiles/t_2_020.cpp index 4e40eac..ef5eb06 100644 --- a/test/testwave/testfiles/t_2_020.cpp +++ b/test/testwave/testfiles/t_2_020.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_2_021.cpp b/test/testwave/testfiles/t_2_021.cpp index d50e6c2..dd2c612 100644 --- a/test/testwave/testfiles/t_2_021.cpp +++ b/test/testwave/testfiles/t_2_021.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_3_001.cpp b/test/testwave/testfiles/t_3_001.cpp index abb9331..4b96917 100644 --- a/test/testwave/testfiles/t_3_001.cpp +++ b/test/testwave/testfiles/t_3_001.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_3_002.cpp b/test/testwave/testfiles/t_3_002.cpp index 2758e49..f8722fc 100644 --- a/test/testwave/testfiles/t_3_002.cpp +++ b/test/testwave/testfiles/t_3_002.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_3_003.cpp b/test/testwave/testfiles/t_3_003.cpp index 4a55412..52935b1 100644 --- a/test/testwave/testfiles/t_3_003.cpp +++ b/test/testwave/testfiles/t_3_003.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_3_004.cpp b/test/testwave/testfiles/t_3_004.cpp index 88cc7c3..9cd981f 100644 --- a/test/testwave/testfiles/t_3_004.cpp +++ b/test/testwave/testfiles/t_3_004.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_4_001.cpp b/test/testwave/testfiles/t_4_001.cpp index 67e7a4e..13c45b0 100644 --- a/test/testwave/testfiles/t_4_001.cpp +++ b/test/testwave/testfiles/t_4_001.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_4_002.cpp b/test/testwave/testfiles/t_4_002.cpp index ba4850c..b2b1c25 100644 --- a/test/testwave/testfiles/t_4_002.cpp +++ b/test/testwave/testfiles/t_4_002.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_4_003.cpp b/test/testwave/testfiles/t_4_003.cpp index 390b424..9e1faa8 100644 --- a/test/testwave/testfiles/t_4_003.cpp +++ b/test/testwave/testfiles/t_4_003.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_4_004.cpp b/test/testwave/testfiles/t_4_004.cpp index 94e22bd..3d49511 100644 --- a/test/testwave/testfiles/t_4_004.cpp +++ b/test/testwave/testfiles/t_4_004.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_5_001.cpp b/test/testwave/testfiles/t_5_001.cpp index 83acaf3..5988ea9 100644 --- a/test/testwave/testfiles/t_5_001.cpp +++ b/test/testwave/testfiles/t_5_001.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_002.cpp b/test/testwave/testfiles/t_5_002.cpp index d87dbb4..13ef188 100644 --- a/test/testwave/testfiles/t_5_002.cpp +++ b/test/testwave/testfiles/t_5_002.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_003.cpp b/test/testwave/testfiles/t_5_003.cpp index fa177c7..3114f81 100644 --- a/test/testwave/testfiles/t_5_003.cpp +++ b/test/testwave/testfiles/t_5_003.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_004.cpp b/test/testwave/testfiles/t_5_004.cpp index 011fd91..64cfb24 100644 --- a/test/testwave/testfiles/t_5_004.cpp +++ b/test/testwave/testfiles/t_5_004.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_005.cpp b/test/testwave/testfiles/t_5_005.cpp index 70a8ef6..a055bc8 100644 --- a/test/testwave/testfiles/t_5_005.cpp +++ b/test/testwave/testfiles/t_5_005.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_006.cpp b/test/testwave/testfiles/t_5_006.cpp index 80817a6..ec00ce9 100644 --- a/test/testwave/testfiles/t_5_006.cpp +++ b/test/testwave/testfiles/t_5_006.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_007.cpp b/test/testwave/testfiles/t_5_007.cpp index 05c8433..8bbf20b 100644 --- a/test/testwave/testfiles/t_5_007.cpp +++ b/test/testwave/testfiles/t_5_007.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_007.hpp b/test/testwave/testfiles/t_5_007.hpp index 709002f..e2bfa55 100644 --- a/test/testwave/testfiles/t_5_007.hpp +++ b/test/testwave/testfiles/t_5_007.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_5_008.cpp b/test/testwave/testfiles/t_5_008.cpp index 96f8466..48ec7af 100644 --- a/test/testwave/testfiles/t_5_008.cpp +++ b/test/testwave/testfiles/t_5_008.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_009.cpp b/test/testwave/testfiles/t_5_009.cpp index 0053738..e956138 100644 --- a/test/testwave/testfiles/t_5_009.cpp +++ b/test/testwave/testfiles/t_5_009.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_010.cpp b/test/testwave/testfiles/t_5_010.cpp index 98196b7..0f35aa2 100644 --- a/test/testwave/testfiles/t_5_010.cpp +++ b/test/testwave/testfiles/t_5_010.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_011.cpp b/test/testwave/testfiles/t_5_011.cpp index eee6fb1..bbe8923 100644 --- a/test/testwave/testfiles/t_5_011.cpp +++ b/test/testwave/testfiles/t_5_011.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_012.cpp b/test/testwave/testfiles/t_5_012.cpp index a7d6cf2..7d72cb1 100644 --- a/test/testwave/testfiles/t_5_012.cpp +++ b/test/testwave/testfiles/t_5_012.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_013.cpp b/test/testwave/testfiles/t_5_013.cpp index d3ffa81..41d4ea4 100644 --- a/test/testwave/testfiles/t_5_013.cpp +++ b/test/testwave/testfiles/t_5_013.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_014.cpp b/test/testwave/testfiles/t_5_014.cpp index 20a4334..e27f6cb 100644 --- a/test/testwave/testfiles/t_5_014.cpp +++ b/test/testwave/testfiles/t_5_014.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_015.cpp b/test/testwave/testfiles/t_5_015.cpp index 98ca381..86f0ab7 100644 --- a/test/testwave/testfiles/t_5_015.cpp +++ b/test/testwave/testfiles/t_5_015.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_016.cpp b/test/testwave/testfiles/t_5_016.cpp index 9e42990..38f2b9b 100644 --- a/test/testwave/testfiles/t_5_016.cpp +++ b/test/testwave/testfiles/t_5_016.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_017.cpp b/test/testwave/testfiles/t_5_017.cpp index 6813aa5..201159d 100644 --- a/test/testwave/testfiles/t_5_017.cpp +++ b/test/testwave/testfiles/t_5_017.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_018.cpp b/test/testwave/testfiles/t_5_018.cpp index c835871..981a60d 100644 --- a/test/testwave/testfiles/t_5_018.cpp +++ b/test/testwave/testfiles/t_5_018.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_019.cpp b/test/testwave/testfiles/t_5_019.cpp index 1160a42..111fb8b 100644 --- a/test/testwave/testfiles/t_5_019.cpp +++ b/test/testwave/testfiles/t_5_019.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_020.cpp b/test/testwave/testfiles/t_5_020.cpp index f4d066d..7786e31 100644 --- a/test/testwave/testfiles/t_5_020.cpp +++ b/test/testwave/testfiles/t_5_020.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_021.cpp b/test/testwave/testfiles/t_5_021.cpp index 3aec8ae..d1381ba 100644 --- a/test/testwave/testfiles/t_5_021.cpp +++ b/test/testwave/testfiles/t_5_021.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_022.cpp b/test/testwave/testfiles/t_5_022.cpp index 8bcdcd5..4e7f31e 100644 --- a/test/testwave/testfiles/t_5_022.cpp +++ b/test/testwave/testfiles/t_5_022.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_023.cpp b/test/testwave/testfiles/t_5_023.cpp index 04727b9..c541437 100644 --- a/test/testwave/testfiles/t_5_023.cpp +++ b/test/testwave/testfiles/t_5_023.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_024.cpp b/test/testwave/testfiles/t_5_024.cpp index 76c4cac..edb5d3b 100644 --- a/test/testwave/testfiles/t_5_024.cpp +++ b/test/testwave/testfiles/t_5_024.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_025.cpp b/test/testwave/testfiles/t_5_025.cpp index 62c99f3..284e506 100644 --- a/test/testwave/testfiles/t_5_025.cpp +++ b/test/testwave/testfiles/t_5_025.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_026.cpp b/test/testwave/testfiles/t_5_026.cpp index ba3db82..6a1bfd4 100644 --- a/test/testwave/testfiles/t_5_026.cpp +++ b/test/testwave/testfiles/t_5_026.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_027.cpp b/test/testwave/testfiles/t_5_027.cpp index 566dac1..dc07f68 100644 --- a/test/testwave/testfiles/t_5_027.cpp +++ b/test/testwave/testfiles/t_5_027.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_028.cpp b/test/testwave/testfiles/t_5_028.cpp index 25b8653..4ff9823 100644 --- a/test/testwave/testfiles/t_5_028.cpp +++ b/test/testwave/testfiles/t_5_028.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_029.cpp b/test/testwave/testfiles/t_5_029.cpp index e468911..0af0f7b 100644 --- a/test/testwave/testfiles/t_5_029.cpp +++ b/test/testwave/testfiles/t_5_029.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_030.cpp b/test/testwave/testfiles/t_5_030.cpp index e197ef5..89d8701 100644 --- a/test/testwave/testfiles/t_5_030.cpp +++ b/test/testwave/testfiles/t_5_030.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_031.cpp b/test/testwave/testfiles/t_5_031.cpp index 8f59ff5..ef74ff8 100644 --- a/test/testwave/testfiles/t_5_031.cpp +++ b/test/testwave/testfiles/t_5_031.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_031.hpp b/test/testwave/testfiles/t_5_031.hpp index 52fbb79..36a2c74 100644 --- a/test/testwave/testfiles/t_5_031.hpp +++ b/test/testwave/testfiles/t_5_031.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_032.cpp b/test/testwave/testfiles/t_5_032.cpp index 099890d..5c8d970 100644 --- a/test/testwave/testfiles/t_5_032.cpp +++ b/test/testwave/testfiles/t_5_032.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_033.cpp b/test/testwave/testfiles/t_5_033.cpp index df146bf..61b4d97 100644 --- a/test/testwave/testfiles/t_5_033.cpp +++ b/test/testwave/testfiles/t_5_033.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_034.cpp b/test/testwave/testfiles/t_5_034.cpp index 29d8d82..dbec499 100644 --- a/test/testwave/testfiles/t_5_034.cpp +++ b/test/testwave/testfiles/t_5_034.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_035.cpp b/test/testwave/testfiles/t_5_035.cpp index 2fcc1ec..42ff718 100644 --- a/test/testwave/testfiles/t_5_035.cpp +++ b/test/testwave/testfiles/t_5_035.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_035.hpp b/test/testwave/testfiles/t_5_035.hpp index abfb889..d71813d 100644 --- a/test/testwave/testfiles/t_5_035.hpp +++ b/test/testwave/testfiles/t_5_035.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_035_01.hpp b/test/testwave/testfiles/t_5_035_01.hpp index 656c908..f15dcb8 100644 --- a/test/testwave/testfiles/t_5_035_01.hpp +++ b/test/testwave/testfiles/t_5_035_01.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_035_02.hpp b/test/testwave/testfiles/t_5_035_02.hpp index b3b9140..b1d75d5 100644 --- a/test/testwave/testfiles/t_5_035_02.hpp +++ b/test/testwave/testfiles/t_5_035_02.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_035_03.hpp b/test/testwave/testfiles/t_5_035_03.hpp index 285a69e..bd28774 100644 --- a/test/testwave/testfiles/t_5_035_03.hpp +++ b/test/testwave/testfiles/t_5_035_03.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_035_04.hpp b/test/testwave/testfiles/t_5_035_04.hpp index 74f3164..4c188b8 100644 --- a/test/testwave/testfiles/t_5_035_04.hpp +++ b/test/testwave/testfiles/t_5_035_04.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_035_05.hpp b/test/testwave/testfiles/t_5_035_05.hpp index 438f5fb..82e7e7d 100644 --- a/test/testwave/testfiles/t_5_035_05.hpp +++ b/test/testwave/testfiles/t_5_035_05.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_035_06.hpp b/test/testwave/testfiles/t_5_035_06.hpp index c271789..35d4077 100644 --- a/test/testwave/testfiles/t_5_035_06.hpp +++ b/test/testwave/testfiles/t_5_035_06.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_035_07.hpp b/test/testwave/testfiles/t_5_035_07.hpp index f0278fa..bf2493a 100644 --- a/test/testwave/testfiles/t_5_035_07.hpp +++ b/test/testwave/testfiles/t_5_035_07.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_035_08.hpp b/test/testwave/testfiles/t_5_035_08.hpp index 589b0bc..b015621 100644 --- a/test/testwave/testfiles/t_5_035_08.hpp +++ b/test/testwave/testfiles/t_5_035_08.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_035_09.hpp b/test/testwave/testfiles/t_5_035_09.hpp index 21da183..b61952d 100644 --- a/test/testwave/testfiles/t_5_035_09.hpp +++ b/test/testwave/testfiles/t_5_035_09.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_035_10.hpp b/test/testwave/testfiles/t_5_035_10.hpp index d5f698e..6af6a53 100644 --- a/test/testwave/testfiles/t_5_035_10.hpp +++ b/test/testwave/testfiles/t_5_035_10.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_035_11.hpp b/test/testwave/testfiles/t_5_035_11.hpp index c670602..0774931 100644 --- a/test/testwave/testfiles/t_5_035_11.hpp +++ b/test/testwave/testfiles/t_5_035_11.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_035_12.hpp b/test/testwave/testfiles/t_5_035_12.hpp index a9164af..3a61379 100644 --- a/test/testwave/testfiles/t_5_035_12.hpp +++ b/test/testwave/testfiles/t_5_035_12.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_035_13.hpp b/test/testwave/testfiles/t_5_035_13.hpp index 8681df2..873723c 100644 --- a/test/testwave/testfiles/t_5_035_13.hpp +++ b/test/testwave/testfiles/t_5_035_13.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_035_14.hpp b/test/testwave/testfiles/t_5_035_14.hpp index ba321f6..5e077d7 100644 --- a/test/testwave/testfiles/t_5_035_14.hpp +++ b/test/testwave/testfiles/t_5_035_14.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_5_035_15.hpp b/test/testwave/testfiles/t_5_035_15.hpp index 03caf76..9da92e2 100644 --- a/test/testwave/testfiles/t_5_035_15.hpp +++ b/test/testwave/testfiles/t_5_035_15.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_001.cpp b/test/testwave/testfiles/t_6_001.cpp index 567e6ce..321646d 100644 --- a/test/testwave/testfiles/t_6_001.cpp +++ b/test/testwave/testfiles/t_6_001.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_002.cpp b/test/testwave/testfiles/t_6_002.cpp index 0ae923e..ae70f3c 100644 --- a/test/testwave/testfiles/t_6_002.cpp +++ b/test/testwave/testfiles/t_6_002.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_003.cpp b/test/testwave/testfiles/t_6_003.cpp index f26fcdb..7a014e3 100644 --- a/test/testwave/testfiles/t_6_003.cpp +++ b/test/testwave/testfiles/t_6_003.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_004.cpp b/test/testwave/testfiles/t_6_004.cpp index ef17919..b5b3cff 100644 --- a/test/testwave/testfiles/t_6_004.cpp +++ b/test/testwave/testfiles/t_6_004.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_005.cpp b/test/testwave/testfiles/t_6_005.cpp index cc8ce3a..9ea9463 100644 --- a/test/testwave/testfiles/t_6_005.cpp +++ b/test/testwave/testfiles/t_6_005.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_006.cpp b/test/testwave/testfiles/t_6_006.cpp index cb16b2d..45f92d8 100644 --- a/test/testwave/testfiles/t_6_006.cpp +++ b/test/testwave/testfiles/t_6_006.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_007.cpp b/test/testwave/testfiles/t_6_007.cpp index 48a00f5..37dc5d9 100644 --- a/test/testwave/testfiles/t_6_007.cpp +++ b/test/testwave/testfiles/t_6_007.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_008.cpp b/test/testwave/testfiles/t_6_008.cpp index b979cb9..0b50acf 100644 --- a/test/testwave/testfiles/t_6_008.cpp +++ b/test/testwave/testfiles/t_6_008.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_009.cpp b/test/testwave/testfiles/t_6_009.cpp index 883d118..4cb80fa 100644 --- a/test/testwave/testfiles/t_6_009.cpp +++ b/test/testwave/testfiles/t_6_009.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_010.cpp b/test/testwave/testfiles/t_6_010.cpp index 33ade08..40590d7 100644 --- a/test/testwave/testfiles/t_6_010.cpp +++ b/test/testwave/testfiles/t_6_010.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_011.cpp b/test/testwave/testfiles/t_6_011.cpp index fa778a1..27d07da 100644 --- a/test/testwave/testfiles/t_6_011.cpp +++ b/test/testwave/testfiles/t_6_011.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_012.cpp b/test/testwave/testfiles/t_6_012.cpp index 6f1cf8b..eeed932 100644 --- a/test/testwave/testfiles/t_6_012.cpp +++ b/test/testwave/testfiles/t_6_012.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_013.cpp b/test/testwave/testfiles/t_6_013.cpp index becf85e..9ad3c5c 100644 --- a/test/testwave/testfiles/t_6_013.cpp +++ b/test/testwave/testfiles/t_6_013.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_014.cpp b/test/testwave/testfiles/t_6_014.cpp index d37fd8c..2276222 100644 --- a/test/testwave/testfiles/t_6_014.cpp +++ b/test/testwave/testfiles/t_6_014.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_015.cpp b/test/testwave/testfiles/t_6_015.cpp index 3f0ac40..f0504bc 100644 --- a/test/testwave/testfiles/t_6_015.cpp +++ b/test/testwave/testfiles/t_6_015.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_016.cpp b/test/testwave/testfiles/t_6_016.cpp index 3223232..406c4e0 100644 --- a/test/testwave/testfiles/t_6_016.cpp +++ b/test/testwave/testfiles/t_6_016.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_017.cpp b/test/testwave/testfiles/t_6_017.cpp index 4a539ad..7f444f7 100644 --- a/test/testwave/testfiles/t_6_017.cpp +++ b/test/testwave/testfiles/t_6_017.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_018.cpp b/test/testwave/testfiles/t_6_018.cpp index 2a4b97e..0e891cb 100644 --- a/test/testwave/testfiles/t_6_018.cpp +++ b/test/testwave/testfiles/t_6_018.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_019.cpp b/test/testwave/testfiles/t_6_019.cpp index ae1532a..be0bf81 100644 --- a/test/testwave/testfiles/t_6_019.cpp +++ b/test/testwave/testfiles/t_6_019.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_020.cpp b/test/testwave/testfiles/t_6_020.cpp index 5833517..f3df8b4 100644 --- a/test/testwave/testfiles/t_6_020.cpp +++ b/test/testwave/testfiles/t_6_020.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_021.cpp b/test/testwave/testfiles/t_6_021.cpp index 49acc49..3e01609 100644 --- a/test/testwave/testfiles/t_6_021.cpp +++ b/test/testwave/testfiles/t_6_021.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_022.cpp b/test/testwave/testfiles/t_6_022.cpp index f1682cf..0c1fce3 100644 --- a/test/testwave/testfiles/t_6_022.cpp +++ b/test/testwave/testfiles/t_6_022.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_023.cpp b/test/testwave/testfiles/t_6_023.cpp index 652a653..764b570 100644 --- a/test/testwave/testfiles/t_6_023.cpp +++ b/test/testwave/testfiles/t_6_023.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_024.cpp b/test/testwave/testfiles/t_6_024.cpp index fc2a1b6..f1cdfc9 100644 --- a/test/testwave/testfiles/t_6_024.cpp +++ b/test/testwave/testfiles/t_6_024.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_025.cpp b/test/testwave/testfiles/t_6_025.cpp index 8c9ea62..e59e05a 100644 --- a/test/testwave/testfiles/t_6_025.cpp +++ b/test/testwave/testfiles/t_6_025.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_026.cpp b/test/testwave/testfiles/t_6_026.cpp index d87fcdc..c8c1b53 100644 --- a/test/testwave/testfiles/t_6_026.cpp +++ b/test/testwave/testfiles/t_6_026.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_027.cpp b/test/testwave/testfiles/t_6_027.cpp index ae8519c..0cebd53 100644 --- a/test/testwave/testfiles/t_6_027.cpp +++ b/test/testwave/testfiles/t_6_027.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_028.cpp b/test/testwave/testfiles/t_6_028.cpp index 0204547..08923ca 100644 --- a/test/testwave/testfiles/t_6_028.cpp +++ b/test/testwave/testfiles/t_6_028.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_029.cpp b/test/testwave/testfiles/t_6_029.cpp index abad73b..dd5a95f 100644 --- a/test/testwave/testfiles/t_6_029.cpp +++ b/test/testwave/testfiles/t_6_029.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_029.hpp b/test/testwave/testfiles/t_6_029.hpp index 039d53d..9eddc02 100644 --- a/test/testwave/testfiles/t_6_029.hpp +++ b/test/testwave/testfiles/t_6_029.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_030.cpp b/test/testwave/testfiles/t_6_030.cpp index b0a8970..a62b34e 100644 --- a/test/testwave/testfiles/t_6_030.cpp +++ b/test/testwave/testfiles/t_6_030.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_030.hpp b/test/testwave/testfiles/t_6_030.hpp index 6714ffe..dbc788a 100644 --- a/test/testwave/testfiles/t_6_030.hpp +++ b/test/testwave/testfiles/t_6_030.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_031.cpp b/test/testwave/testfiles/t_6_031.cpp index af712d3..2a3caec 100644 --- a/test/testwave/testfiles/t_6_031.cpp +++ b/test/testwave/testfiles/t_6_031.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_032.cpp b/test/testwave/testfiles/t_6_032.cpp index 73737a6..129195e 100644 --- a/test/testwave/testfiles/t_6_032.cpp +++ b/test/testwave/testfiles/t_6_032.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_033.cpp b/test/testwave/testfiles/t_6_033.cpp index 0299f8c..073a71c 100644 --- a/test/testwave/testfiles/t_6_033.cpp +++ b/test/testwave/testfiles/t_6_033.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_034.cpp b/test/testwave/testfiles/t_6_034.cpp index 668338f..55126a4 100644 --- a/test/testwave/testfiles/t_6_034.cpp +++ b/test/testwave/testfiles/t_6_034.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_035.cpp b/test/testwave/testfiles/t_6_035.cpp index 73246ed..9355b87 100644 --- a/test/testwave/testfiles/t_6_035.cpp +++ b/test/testwave/testfiles/t_6_035.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_036.cpp b/test/testwave/testfiles/t_6_036.cpp index 94b09c2..599d435 100644 --- a/test/testwave/testfiles/t_6_036.cpp +++ b/test/testwave/testfiles/t_6_036.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_037.cpp b/test/testwave/testfiles/t_6_037.cpp index 753302e..6548aa7 100644 --- a/test/testwave/testfiles/t_6_037.cpp +++ b/test/testwave/testfiles/t_6_037.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_038.cpp b/test/testwave/testfiles/t_6_038.cpp index 242c7fb..cd27e7f 100644 --- a/test/testwave/testfiles/t_6_038.cpp +++ b/test/testwave/testfiles/t_6_038.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_039.cpp b/test/testwave/testfiles/t_6_039.cpp index e5d6429..8a4e48e 100644 --- a/test/testwave/testfiles/t_6_039.cpp +++ b/test/testwave/testfiles/t_6_039.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_040.cpp b/test/testwave/testfiles/t_6_040.cpp index 8de0e88..bb373c7 100644 --- a/test/testwave/testfiles/t_6_040.cpp +++ b/test/testwave/testfiles/t_6_040.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_041.cpp b/test/testwave/testfiles/t_6_041.cpp index 8400790..6e906ba 100644 --- a/test/testwave/testfiles/t_6_041.cpp +++ b/test/testwave/testfiles/t_6_041.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_042.cpp b/test/testwave/testfiles/t_6_042.cpp index 0df79f9..4e98019 100644 --- a/test/testwave/testfiles/t_6_042.cpp +++ b/test/testwave/testfiles/t_6_042.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_043.cpp b/test/testwave/testfiles/t_6_043.cpp index 9344ad9..c9e3f15 100644 --- a/test/testwave/testfiles/t_6_043.cpp +++ b/test/testwave/testfiles/t_6_043.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_044.cpp b/test/testwave/testfiles/t_6_044.cpp index c697438..c858ea9 100644 --- a/test/testwave/testfiles/t_6_044.cpp +++ b/test/testwave/testfiles/t_6_044.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_045.cpp b/test/testwave/testfiles/t_6_045.cpp index 16db53d..b52cce1 100644 --- a/test/testwave/testfiles/t_6_045.cpp +++ b/test/testwave/testfiles/t_6_045.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_046.cpp b/test/testwave/testfiles/t_6_046.cpp index 9bd09fc..a4ed550 100644 --- a/test/testwave/testfiles/t_6_046.cpp +++ b/test/testwave/testfiles/t_6_046.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_047.cpp b/test/testwave/testfiles/t_6_047.cpp index d5aee95..d107b8c 100644 --- a/test/testwave/testfiles/t_6_047.cpp +++ b/test/testwave/testfiles/t_6_047.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_048.cpp b/test/testwave/testfiles/t_6_048.cpp index ba3b1ab..4fdb612 100644 --- a/test/testwave/testfiles/t_6_048.cpp +++ b/test/testwave/testfiles/t_6_048.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_049.cpp b/test/testwave/testfiles/t_6_049.cpp index b134760..e78af8c 100644 --- a/test/testwave/testfiles/t_6_049.cpp +++ b/test/testwave/testfiles/t_6_049.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_050.cpp b/test/testwave/testfiles/t_6_050.cpp index fc04930..3942e92 100644 --- a/test/testwave/testfiles/t_6_050.cpp +++ b/test/testwave/testfiles/t_6_050.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_051.cpp b/test/testwave/testfiles/t_6_051.cpp index 3f8f57a..ff15e57 100644 --- a/test/testwave/testfiles/t_6_051.cpp +++ b/test/testwave/testfiles/t_6_051.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_052.cpp b/test/testwave/testfiles/t_6_052.cpp index bd9aba1..491aa07 100644 --- a/test/testwave/testfiles/t_6_052.cpp +++ b/test/testwave/testfiles/t_6_052.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_053.cpp b/test/testwave/testfiles/t_6_053.cpp index fe27170..74aa839 100644 --- a/test/testwave/testfiles/t_6_053.cpp +++ b/test/testwave/testfiles/t_6_053.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_054.cpp b/test/testwave/testfiles/t_6_054.cpp index d3aa0ee..47c2933 100644 --- a/test/testwave/testfiles/t_6_054.cpp +++ b/test/testwave/testfiles/t_6_054.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_055.cpp b/test/testwave/testfiles/t_6_055.cpp index 2f96e86..5aad7b9 100644 --- a/test/testwave/testfiles/t_6_055.cpp +++ b/test/testwave/testfiles/t_6_055.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_056.cpp b/test/testwave/testfiles/t_6_056.cpp index fc614ff..0421a40 100644 --- a/test/testwave/testfiles/t_6_056.cpp +++ b/test/testwave/testfiles/t_6_056.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_057.cpp b/test/testwave/testfiles/t_6_057.cpp index 8245ff3..ed91081 100644 --- a/test/testwave/testfiles/t_6_057.cpp +++ b/test/testwave/testfiles/t_6_057.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_058.cpp b/test/testwave/testfiles/t_6_058.cpp index d95edf4..ca37ad9 100644 --- a/test/testwave/testfiles/t_6_058.cpp +++ b/test/testwave/testfiles/t_6_058.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_059.cpp b/test/testwave/testfiles/t_6_059.cpp index d7989de..641421b 100644 --- a/test/testwave/testfiles/t_6_059.cpp +++ b/test/testwave/testfiles/t_6_059.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_060.cpp b/test/testwave/testfiles/t_6_060.cpp index 4adb1f3..0d2a570 100644 --- a/test/testwave/testfiles/t_6_060.cpp +++ b/test/testwave/testfiles/t_6_060.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_061.cpp b/test/testwave/testfiles/t_6_061.cpp index 2e239f2..f7621fa 100644 --- a/test/testwave/testfiles/t_6_061.cpp +++ b/test/testwave/testfiles/t_6_061.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_062.cpp b/test/testwave/testfiles/t_6_062.cpp index 5a98b2d..df06a60 100644 --- a/test/testwave/testfiles/t_6_062.cpp +++ b/test/testwave/testfiles/t_6_062.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_063.cpp b/test/testwave/testfiles/t_6_063.cpp index 9d2fd02..50af5f0 100644 --- a/test/testwave/testfiles/t_6_063.cpp +++ b/test/testwave/testfiles/t_6_063.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_063.hpp b/test/testwave/testfiles/t_6_063.hpp index c117a32..6434c3d 100644 --- a/test/testwave/testfiles/t_6_063.hpp +++ b/test/testwave/testfiles/t_6_063.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_064.cpp b/test/testwave/testfiles/t_6_064.cpp index 0df2e4e..1491846 100644 --- a/test/testwave/testfiles/t_6_064.cpp +++ b/test/testwave/testfiles/t_6_064.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_065.cpp b/test/testwave/testfiles/t_6_065.cpp index fb9c5c4..003f4f0 100644 --- a/test/testwave/testfiles/t_6_065.cpp +++ b/test/testwave/testfiles/t_6_065.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_066.cpp b/test/testwave/testfiles/t_6_066.cpp index f733b18..7620b15 100644 --- a/test/testwave/testfiles/t_6_066.cpp +++ b/test/testwave/testfiles/t_6_066.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_066.hpp b/test/testwave/testfiles/t_6_066.hpp index 7f23f41..1e8982c 100644 --- a/test/testwave/testfiles/t_6_066.hpp +++ b/test/testwave/testfiles/t_6_066.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_067.cpp b/test/testwave/testfiles/t_6_067.cpp index ca845ec..6c1b8e2 100644 --- a/test/testwave/testfiles/t_6_067.cpp +++ b/test/testwave/testfiles/t_6_067.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_067.hpp b/test/testwave/testfiles/t_6_067.hpp index 6972db4..9d9fcee 100644 --- a/test/testwave/testfiles/t_6_067.hpp +++ b/test/testwave/testfiles/t_6_067.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_068.cpp b/test/testwave/testfiles/t_6_068.cpp index e26f18c..4ea1fb9 100644 --- a/test/testwave/testfiles/t_6_068.cpp +++ b/test/testwave/testfiles/t_6_068.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_6_069.cpp b/test/testwave/testfiles/t_6_069.cpp index a51da77..d1b7eba 100644 --- a/test/testwave/testfiles/t_6_069.cpp +++ b/test/testwave/testfiles/t_6_069.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) diff --git a/test/testwave/testfiles/t_7_001.cpp b/test/testwave/testfiles/t_7_001.cpp index faba440..0a714ea 100644 --- a/test/testwave/testfiles/t_7_001.cpp +++ b/test/testwave/testfiles/t_7_001.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_001.cpp b/test/testwave/testfiles/t_9_001.cpp index c0c0cf3..5ba4154 100644 --- a/test/testwave/testfiles/t_9_001.cpp +++ b/test/testwave/testfiles/t_9_001.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_002.cpp b/test/testwave/testfiles/t_9_002.cpp index 58a4ba7..aac5b16 100644 --- a/test/testwave/testfiles/t_9_002.cpp +++ b/test/testwave/testfiles/t_9_002.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_003.cpp b/test/testwave/testfiles/t_9_003.cpp index 97fdc36..c7cef8b 100644 --- a/test/testwave/testfiles/t_9_003.cpp +++ b/test/testwave/testfiles/t_9_003.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_004.cpp b/test/testwave/testfiles/t_9_004.cpp index 1ca5dfd..c31d10e 100644 --- a/test/testwave/testfiles/t_9_004.cpp +++ b/test/testwave/testfiles/t_9_004.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_005.cpp b/test/testwave/testfiles/t_9_005.cpp index 2cf6fa5..0644fcd 100644 --- a/test/testwave/testfiles/t_9_005.cpp +++ b/test/testwave/testfiles/t_9_005.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_006.cpp b/test/testwave/testfiles/t_9_006.cpp index a25111d..26004cd 100644 --- a/test/testwave/testfiles/t_9_006.cpp +++ b/test/testwave/testfiles/t_9_006.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_007.cpp b/test/testwave/testfiles/t_9_007.cpp index 5dc6b7e..1eb26d7 100644 --- a/test/testwave/testfiles/t_9_007.cpp +++ b/test/testwave/testfiles/t_9_007.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_008.cpp b/test/testwave/testfiles/t_9_008.cpp index 3b5379f..f8cf614 100644 --- a/test/testwave/testfiles/t_9_008.cpp +++ b/test/testwave/testfiles/t_9_008.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_009.cpp b/test/testwave/testfiles/t_9_009.cpp index c2e18d4..5513058 100644 --- a/test/testwave/testfiles/t_9_009.cpp +++ b/test/testwave/testfiles/t_9_009.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_010.cpp b/test/testwave/testfiles/t_9_010.cpp index 78c313f..b2a4471 100644 --- a/test/testwave/testfiles/t_9_010.cpp +++ b/test/testwave/testfiles/t_9_010.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_011.cpp b/test/testwave/testfiles/t_9_011.cpp index ea72040..7440e36 100644 --- a/test/testwave/testfiles/t_9_011.cpp +++ b/test/testwave/testfiles/t_9_011.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_012.cpp b/test/testwave/testfiles/t_9_012.cpp index bbf8763..1e06d42 100644 --- a/test/testwave/testfiles/t_9_012.cpp +++ b/test/testwave/testfiles/t_9_012.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_013.cpp b/test/testwave/testfiles/t_9_013.cpp index 869b01a..03b9310 100644 --- a/test/testwave/testfiles/t_9_013.cpp +++ b/test/testwave/testfiles/t_9_013.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_014.cpp b/test/testwave/testfiles/t_9_014.cpp index add2c97..113967a 100644 --- a/test/testwave/testfiles/t_9_014.cpp +++ b/test/testwave/testfiles/t_9_014.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_015.cpp b/test/testwave/testfiles/t_9_015.cpp index 58a52ee..ce2ac91 100644 --- a/test/testwave/testfiles/t_9_015.cpp +++ b/test/testwave/testfiles/t_9_015.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_016.cpp b/test/testwave/testfiles/t_9_016.cpp index 71c5bee..66420d9 100644 --- a/test/testwave/testfiles/t_9_016.cpp +++ b/test/testwave/testfiles/t_9_016.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_016.hpp b/test/testwave/testfiles/t_9_016.hpp index 0280e4e..6a4724b 100644 --- a/test/testwave/testfiles/t_9_016.hpp +++ b/test/testwave/testfiles/t_9_016.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_017.cpp b/test/testwave/testfiles/t_9_017.cpp index 0b41a8f..4466b98 100644 --- a/test/testwave/testfiles/t_9_017.cpp +++ b/test/testwave/testfiles/t_9_017.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_018.cpp b/test/testwave/testfiles/t_9_018.cpp index c5f0b51..c6c9529 100644 --- a/test/testwave/testfiles/t_9_018.cpp +++ b/test/testwave/testfiles/t_9_018.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_019.cpp b/test/testwave/testfiles/t_9_019.cpp index 7c3a324..a162e71 100644 --- a/test/testwave/testfiles/t_9_019.cpp +++ b/test/testwave/testfiles/t_9_019.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/t_9_019.hpp b/test/testwave/testfiles/t_9_019.hpp index 6b858a6..843fedf 100644 --- a/test/testwave/testfiles/t_9_019.hpp +++ b/test/testwave/testfiles/t_9_019.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testfiles/test.cfg b/test/testwave/testfiles/test.cfg index 2272548..6a9a58b 100644 --- a/test/testwave/testfiles/test.cfg +++ b/test/testwave/testfiles/test.cfg @@ -2,7 +2,7 @@ # Boost.Wave: A Standard compliant C++ preprocessor library # http://www.boost.org/ # -# Copyright (c) 2003-2009 Hartmut Kaiser. Distributed under the Boost +# Copyright (c) 2003-2011 Hartmut Kaiser. 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) # diff --git a/test/testwave/testwave.cpp b/test/testwave/testwave.cpp index 516c404..70fdfdc 100644 --- a/test/testwave/testwave.cpp +++ b/test/testwave/testwave.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testwave_app.cpp b/test/testwave/testwave_app.cpp index ef2e791..bede405 100644 --- a/test/testwave/testwave_app.cpp +++ b/test/testwave/testwave_app.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ @@ -591,7 +591,7 @@ testwave_app::print_copyright() "Testwave: A test driver for the Boost.Wave C++ preprocessor library", "http://www.boost.org/", "", - "Copyright (c) 2001-2010 Hartmut Kaiser, Distributed under the Boost", + "Copyright (c) 2001-2011 Hartmut Kaiser, 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)", 0 diff --git a/test/testwave/testwave_app.hpp b/test/testwave/testwave_app.hpp index c3b894a..6450ca3 100644 --- a/test/testwave/testwave_app.hpp +++ b/test/testwave/testwave_app.hpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testwave_app_dll.cpp b/test/testwave/testwave_app_dll.cpp index d994a63..fc13812 100644 --- a/test/testwave/testwave_app_dll.cpp +++ b/test/testwave/testwave_app_dll.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/ diff --git a/test/testwave/testwave_dll.cpp b/test/testwave/testwave_dll.cpp index 0399b77..0039445 100644 --- a/test/testwave/testwave_dll.cpp +++ b/test/testwave/testwave_dll.cpp @@ -2,7 +2,7 @@ Boost.Wave: A Standard compliant C++ preprocessor library http://www.boost.org/ - Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost + Copyright (c) 2001-2011 Hartmut Kaiser. 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) =============================================================================*/