Commit db566c7e by Jonathan Wakely

howto.html: Document change from _GLIBCPP_CONCEPT_CHECKS to _GLIBCXX_CONCEPT_CHECKS in 3.4.

2004-11-16  Jonathan Wakely  <redi@gcc.gnu.org>

	* docs/html/19_diagnostics/howto.html: Document change from
	_GLIBCPP_CONCEPT_CHECKS to _GLIBCXX_CONCEPT_CHECKS in 3.4.

From-SVN: r90729
parent fc188d37
2004-11-16 Jonathan Wakely <redi@gcc.gnu.org>
* docs/html/19_diagnostics/howto.html: Document change from
_GLIBCPP_CONCEPT_CHECKS to _GLIBCXX_CONCEPT_CHECKS in 3.4.
2004-11-16 Matthias Klose <doko@debian.org> 2004-11-16 Matthias Klose <doko@debian.org>
* docs/doxygen/user.cfg.in: Set HAVE_DOT to NO. * docs/doxygen/user.cfg.in: Set HAVE_DOT to NO.
......
...@@ -110,11 +110,14 @@ ...@@ -110,11 +110,14 @@
object file. The checks are also cleaner and easier to read and object file. The checks are also cleaner and easier to read and
understand. understand.
</p> </p>
<p>For GCC 3.0 and 3.1 they are off by default. They can be enabled at <p>They are off by default for all versions of GCC from 3.0 to 3.4 (the
configure time with latest release at the time of writing).
They can be enabled at configure time with
<a href="../configopts.html"><code>--enable-concept-checks</code></a>. <a href="../configopts.html"><code>--enable-concept-checks</code></a>.
For 3.1 you can instead #define _GLIBCPP_CONCEPT_CHECKS to enable them You can enable them on a per-translation-unit basis with
on a per-translation-unit basis. <code>#define _GLIBCXX_CONCEPT_CHECKS</code> for GCC 3.4 and higher
(or with <code>#define _GLIBCPP_CONCEPT_CHECKS</code> for versions
3.1, 3.2 and 3.3).
</p> </p>
<p>Return <a href="#top">to top of page</a> or <p>Return <a href="#top">to top of page</a> or
<a href="../faq/index.html">to the FAQ</a>. <a href="../faq/index.html">to the FAQ</a>.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment