aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp
diff options
context:
space:
mode:
authorKelley Cook <kcook@gcc.gnu.org>2004-07-20 00:34:03 +0000
committerR. Kelley Cook <kcook@gcc.gnu.org>2004-07-20 00:34:03 +0000
commite05de6f246b5bb905229c0f9365010d7adf15bdc (patch)
treef180e44ddbb4dc8ab183fc78e11e922afb93048f /gcc/cp
parenta57c6d6b633f16420c6bf17996af525c106184bf (diff)
downloadgcc-e05de6f246b5bb905229c0f9365010d7adf15bdc.zip
gcc-e05de6f246b5bb905229c0f9365010d7adf15bdc.tar.gz
gcc-e05de6f246b5bb905229c0f9365010d7adf15bdc.tar.bz2
Remove DOS style trailing Carriage Returns
From-SVN: r84941
Diffstat (limited to 'gcc/cp')
-rw-r--r--gcc/cp/ChangeLog4
-rw-r--r--gcc/cp/except.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 4038747..84b4bdd 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,7 @@
+2004-07-19 Kelley Cook <kcook@gcc.gnu.org>
+
+ * except.c: Remove two spurious carriage returns.
+
2004-07-19 Mark Mitchell <mark@codesourcery.com>
PR c++/16623
diff --git a/gcc/cp/except.c b/gcc/cp/except.c
index e978a54..91f9c87 100644
--- a/gcc/cp/except.c
+++ b/gcc/cp/except.c
@@ -595,9 +595,9 @@ build_throw (tree exp)
fn = push_throw_library_fn (fn, tmp);
}
else if (really_overloaded_fn (fn))
- {
+ {
error ("`%D' should never be overloaded", fn);
- return error_mark_node;
+ return error_mark_node;
}
fn = OVL_CURRENT (fn);
exp = build_function_call (fn, tree_cons (NULL_TREE, exp, NULL_TREE));