diff options
author | Mark Mitchell <mark@markmitchell.com> | 1999-03-10 12:17:47 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1999-03-10 12:17:47 +0000 |
commit | 1e61a9d9525b97af480e78ce0d6effbcf2386edd (patch) | |
tree | 4ceb069b7c494910b118209fe2fc269eee5c0f6a /gcc | |
parent | 66c0b347bc7f9c2006901ca903c052046b1d7256 (diff) | |
download | gcc-1e61a9d9525b97af480e78ce0d6effbcf2386edd.zip gcc-1e61a9d9525b97af480e78ce0d6effbcf2386edd.tar.gz gcc-1e61a9d9525b97af480e78ce0d6effbcf2386edd.tar.bz2 |
* search.c (assert_canonical_unmarked): Fix typo in prototype.
From-SVN: r25671
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/cp/search.c | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 4ccda9e..d1c731c 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,7 @@ 1999-03-10 Mark Mitchell <mark@markmitchell.com> + * search.c (assert_canonical_unmarked): Fix typo in prototype. + * search.c (dfs_canonical_queue): New function. (dfs_assert_unmarked_p): Likewise. (assert_canonical_unmarked): Likewise. diff --git a/gcc/cp/search.c b/gcc/cp/search.c index fecec21..18269fa 100644 --- a/gcc/cp/search.c +++ b/gcc/cp/search.c @@ -145,8 +145,8 @@ static tree dfs_accessible_p PROTO ((tree, void *)); static tree dfs_access_in_type PROTO ((tree, void *)); static tree access_in_type PROTO ((tree, tree)); static tree dfs_canonical_queue PROTO ((tree, void *)); -static tree dfs_assert_unmarked_P PROTO ((tree, void *)); -static tree assert_canonical_unmarked PROTO ((tree)); +static tree dfs_assert_unmarked_p PROTO ((tree, void *)); +static void assert_canonical_unmarked PROTO ((tree)); /* Allocate a level of searching. */ |