diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-08-19 18:53:57 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-08-19 18:53:57 +0000 |
commit | a02f3606beb94c1dad5e6b8ef0f154c2d6860439 (patch) | |
tree | 8be9ec594ec917c67a616b609dd2e82c0b28355c | |
parent | 9075d22f3c675ba85effded41f77f109dc89ccea (diff) | |
download | gcc-a02f3606beb94c1dad5e6b8ef0f154c2d6860439.tar.gz |
* doc/invoke.texi (C++ Dialect Options): Note change of minimum
supported template depth in C++0x.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@150941 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/invoke.texi | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4397d759b85..76f606046f8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-08-19 Jason Merrill <jason@redhat.com> + + * doc/invoke.texi (C++ Dialect Options): Note change of minimum + supported template depth in C++0x. + 2009-08-19 Jakub Jelinek <jakub@redhat.com> * config/rs6000/rs6000.c (rs6000_output_mi_thunk): Don't call diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 236f6fc1974..48dfde4a9c4 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -1924,7 +1924,8 @@ This information is generally only useful to the G++ development team. Set the maximum instantiation depth for template classes to @var{n}. A limit on the template instantiation depth is needed to detect endless recursions during template class instantiation. ANSI/ISO C++ -conforming programs must not rely on a maximum depth greater than 17. +conforming programs must not rely on a maximum depth greater than 17 +(changed to 1024 in C++0x). @item -fno-threadsafe-statics @opindex fno-threadsafe-statics |