diff options
author | Jonathan Wakely <jwakely.gcc@gmail.com> | 2012-08-25 18:51:53 +0000 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2012-08-25 19:51:53 +0100 |
commit | 05ee55c46bd664500f9af9e925548ea95878658a (patch) | |
tree | bddd95981fbee4ac6b727d15656da704bb4f1847 | |
parent | 66aaf16f87dc08bcdfa237adf39227be51d6b2d0 (diff) | |
download | gcc-05ee55c46bd664500f9af9e925548ea95878658a.zip gcc-05ee55c46bd664500f9af9e925548ea95878658a.tar.gz gcc-05ee55c46bd664500f9af9e925548ea95878658a.tar.bz2 |
re PR libstdc++/54248 (Comment in standard library header talks about boost)
PR libstdc++/54248
* include/bits/concept_check.h: Replace references to boost
namespace.
From-SVN: r190668
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/concept_check.h | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 3f6e2a8..48ccb54 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2012-08-25 Jonathan Wakely <jwakely.gcc@gmail.com> + + PR libstdc++/54248 + * include/bits/concept_check.h: Replace references to boost + namespace. + 2012-08-23 Jonathan Wakely <jwakely.gcc@gmail.com> PR libstdc++/54354 diff --git a/libstdc++-v3/include/bits/concept_check.h b/libstdc++-v3/include/bits/concept_check.h index 9517e5c..3d74284 100644 --- a/libstdc++-v3/include/bits/concept_check.h +++ b/libstdc++-v3/include/bits/concept_check.h @@ -56,12 +56,12 @@ // Note that the obvious and elegant approach of // -//#define glibcxx_function_requires(C) boost::function_requires< boost::C >() +//#define glibcxx_function_requires(C) debug::function_requires< debug::C >() // // won't work due to concept templates with more than one parameter, e.g., // BinaryPredicateConcept. The preprocessor tries to split things up on // the commas in the template argument list. We can't use an inner pair of -// parenthesis to hide the commas, because "boost::(Temp<Foo,Bar>)" isn't +// parenthesis to hide the commas, because "debug::(Temp<Foo,Bar>)" isn't // a valid instantiation pattern. Thus, we steal a feature from C99. #define __glibcxx_function_requires(...) \ |