diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-18 01:06:05 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-18 01:06:05 +0000 |
commit | 3e6725e028b1b230c5c56bbb123b9c4d8a4c8a44 (patch) | |
tree | 255639afa7ef7aec6e20edbe4daef731cb122f1f /libstdc++-v3/src/Makefile.am | |
parent | dc121bcabb2bde9f6a0d764d126e0295134fae2e (diff) | |
download | gcc-3e6725e028b1b230c5c56bbb123b9c4d8a4c8a44.tar.gz |
2001-04-17 Benjamin Kosnik <bkoz@redhat.com>
* testsuite/23_containers/map_operators.cc: Add dg-excess-errors.
* testsuite/23_containers/set_operators.cc: Same.
* include/bits/c++config: Add _GLIBCPP_CONCEPT_CHECKS. Disable by
default.
(__GLIBCPP__): Bump from value of last release.
* include/bits/concept_check.h: Default to off, edit comments.
* src/stl-inst.cc: Use _GLIBCPP_CONCEPT_CHECKS.
* src/Makefile.am (AM_CXXFLAGS): Remove _GLIBCPP_NO_CONCEPT_CHECKS.
* src/Makefile.in: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41397 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/src/Makefile.am')
-rw-r--r-- | libstdc++-v3/src/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/src/Makefile.am b/libstdc++-v3/src/Makefile.am index 2c42430156d..5cd1593b815 100644 --- a/libstdc++-v3/src/Makefile.am +++ b/libstdc++-v3/src/Makefile.am @@ -21,7 +21,7 @@ ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, ## USA. -## $Id: Makefile.am,v 1.82 2001/04/06 06:08:17 bkoz Exp $ +## $Id: Makefile.am,v 1.83 2001/04/11 18:52:31 bkoz Exp $ AUTOMAKE_OPTIONS = 1.3 gnits MAINT_CHARSET = latin1 @@ -306,7 +306,7 @@ tmp-libstdc++.INC: Makefile # the concept-checking symbols. So we must disable the checks while # actually building the library. AM_CXXFLAGS = \ - -fno-implicit-templates -D_GLIBCPP_NO_CONCEPT_CHECKS \ + -fno-implicit-templates \ $(LIBSUPCXX_CXXFLAGS) \ $(WARN_CXXFLAGS) \ $(OPTIMIZE_CXXFLAGS) \ |