diff options
author | Jason Merrill <jason@yorick.cygnus.com> | 1997-09-15 18:53:28 +0000 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 1997-09-15 14:53:28 -0400 |
commit | 18a7cd243d74586c14597c1ccdb2124275a338d4 (patch) | |
tree | a3f55aaa752039ce63e7d4576e73fc48e0c087aa | |
parent | 01d8acec7abd07df9a70eb4f47e81cc371375de5 (diff) | |
download | gcc-18a7cd243d74586c14597c1ccdb2124275a338d4.zip gcc-18a7cd243d74586c14597c1ccdb2124275a338d4.tar.gz gcc-18a7cd243d74586c14597c1ccdb2124275a338d4.tar.bz2 |
call.c (joust): Disable warnings until they can be moved to the right place.
* call.c (joust): Disable warnings until they can be moved to the
right place.
From-SVN: r15450
-rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cp/call.c | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 577596f..11b4885 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +Mon Sep 15 11:52:13 1997 Jason Merrill <jason@yorick.cygnus.com> + + * call.c (joust): Disable warnings until they can be moved to the + right place. + Fri Sep 12 16:11:13 1997 Per Bothner <bothner@cygnus.com> * Makefile.in, config-lang.in: Convert to autoconf. diff --git a/gcc/cp/call.c b/gcc/cp/call.c index 5bf18c9..c0152fb 100644 --- a/gcc/cp/call.c +++ b/gcc/cp/call.c @@ -5977,6 +5977,7 @@ joust (cand1, cand2) if (comp != 0) { +#if 0 /* move this warning to tourney. */ if (warn_sign_promo && ICS_RANK (t1) + ICS_RANK (t2) == STD_RANK + PROMO_RANK && TREE_CODE (t1) == STD_CONV @@ -6000,6 +6001,7 @@ joust (cand1, cand2) type, type1, type2); cp_warning (" in call to `%D'", DECL_NAME (cand1->fn)); } +#endif if (winner && comp != winner) { @@ -6010,6 +6012,7 @@ joust (cand1, cand2) } } +#if 0 /* move this warning to tourney. */ /* warn about confusing overload resolution */ if (winner && cand1->second_conv && ! DECL_CONSTRUCTOR_P (cand1->fn) @@ -6030,6 +6033,7 @@ joust (cand1, cand2) cp_warning (" because conversion sequence for `this' argument is better"); } } +#endif if (winner) return winner; |