From 99d6a99bfb0803d5c4fbcf5e19e8f2e6ad1978c5 Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Fri, 13 Aug 1999 00:52:31 +0000 Subject: [PATCH] * decl2.c (lang_decode_option): Deprecate signatures. From-SVN: r28692 --- gcc/cp/ChangeLog | 4 ++++ gcc/cp/decl2.c | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 93588427247f..e36bbd0e9270 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +1999-08-12 Mark Mitchell + + * decl2.c (lang_decode_option): Deprecate signatures. + 1999-08-11 Martin v. Loewis * lex.c (do_identifier): If we find a hidden type after a global diff --git a/gcc/cp/decl2.c b/gcc/cp/decl2.c index e5b758955afd..84f491f437cf 100644 --- a/gcc/cp/decl2.c +++ b/gcc/cp/decl2.c @@ -633,6 +633,12 @@ lang_decode_option (argc, argv) found = 1; cp_deprecated ("-fexternal-templates"); } + else if (!strcmp (p, "handle-signatures")) + { + flag_handle_signatures = 1; + found = 1; + cp_deprecated ("-fhandle-signatures"); + } else if (!strcmp (p, "new-abi")) { flag_new_abi = 1; -- 2.47.2