diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-24 04:51:57 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-24 04:51:57 +0000 |
commit | b7032dd4a5ab57e909887ce677790f4845c3843b (patch) | |
tree | 40b36a71976f701fc2d09b38bd521e3ba6589ef9 /gcc/cp/NEWS | |
parent | cc8fe0a15d1e036a6e4cf82a97f787ffded76069 (diff) | |
download | gcc-b7032dd4a5ab57e909887ce677790f4845c3843b.tar.gz |
update
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@15687 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/NEWS')
-rw-r--r-- | gcc/cp/NEWS | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/cp/NEWS b/gcc/cp/NEWS index 0a8df4c92ce..fb3ac05b84b 100644 --- a/gcc/cp/NEWS +++ b/gcc/cp/NEWS @@ -9,6 +9,11 @@ * Member function templates are now supported. +* __FUNCTION__ and __PRETTY_FUNCTION__ are now treated as variables by the + parser; previously they were treated as string constants. So code like + `printf (__FUNCTION__ ": foo")' must be rewritten to + `printf ("%s: foo", __FUNCTION__)'. This is necessary for templates. + * New flags -Wsign-promo (warn about potentially confusing promotions in overload resolution), -Wno-pmf-conversion (don't warn about converting from a bound member function pointer to function pointer). @@ -108,7 +113,7 @@ Still not supported: - + Member templates. + + Member class templates. + Template template parameters. * Synthesized methods are now emitted in any translation units that need |