From: Mark Mitchell Date: Fri, 13 Aug 1999 00:52:31 +0000 (+0000) Subject: * decl2.c (lang_decode_option): Deprecate signatures. X-Git-Tag: releases/gcc-2.95.1~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=99d6a99bfb0803d5c4fbcf5e19e8f2e6ad1978c5;p=thirdparty%2Fgcc.git * decl2.c (lang_decode_option): Deprecate signatures. From-SVN: r28692 --- 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;