447cfcb9e1
* cp-tree.h (finish_stmt_expr): Change prototype. * expr.c (cplus_expand_expr): Adjust call accordingly. * init.c (finish_init_stmts): Likewise. * parse.y (primary): Likewise. * pt.c (tsubst_copy): Likewise. * semantics.c (finish_stmt_expr): Don't take two parameters. Don't remove generated BLOCKs from the block-tree. From-SVN: r29533
11 lines
172 B
C
11 lines
172 B
C
// Build don't link:
|
|
// Special g++ Options: -O
|
|
// Origin: Thomas Kunert <kunert@physik.tu-dresden.de>
|
|
|
|
#include <ctype.h>
|
|
|
|
bool f( char c )
|
|
{
|
|
return tolower( c );
|
|
}
|