aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/method.c
diff options
context:
space:
mode:
authorJason Merrill <jason@gcc.gnu.org>1997-10-07 03:50:21 -0400
committerJason Merrill <jason@gcc.gnu.org>1997-10-07 03:50:21 -0400
commitc32381b1878298d0d3e5f6625ed30b9d7b523fef (patch)
treeded2a3f8c24b4d19b9676b97beaa072fbcf41cb8 /gcc/cp/method.c
parent45f22fa2551c0002d82ff11384921418dc67711c (diff)
downloadgcc-c32381b1878298d0d3e5f6625ed30b9d7b523fef.zip
gcc-c32381b1878298d0d3e5f6625ed30b9d7b523fef.tar.gz
gcc-c32381b1878298d0d3e5f6625ed30b9d7b523fef.tar.bz2
decl.c (duplicate_decls): Don't warn about template instances.
* decl.c (duplicate_decls): Don't warn about template instances. * typeck.c (mark_addressable): Lose ancient code that unsets DECL_EXTERNAL. * pt.c (do_decl_instantiation): Lose support for instantiating non-templates. * call.c (build_new_function_call): Fix handling of null explicit template args. (build_new_method_call): Likewise. Mon Oct 6 23:44:34 1997 Mark Mitchell <mmitchell@usa.net> * method.c (build_underscore_int): Fix typo. From-SVN: r15851
Diffstat (limited to 'gcc/cp/method.c')
-rw-r--r--gcc/cp/method.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/method.c b/gcc/cp/method.c
index 69d1670e..3b70743 100644
--- a/gcc/cp/method.c
+++ b/gcc/cp/method.c
@@ -424,7 +424,7 @@ build_underscore_int (int i)
OB_PUTC ('_');
icat (i);
if (i > 9)
- OB_PUTS ('_');
+ OB_PUTC ('_');
}
/* Encoding for an INTEGER_CST value. */