From 0cf566ec651d073db71dad1de50a0df77587fbd2 Mon Sep 17 00:00:00 2001 From: David Carlton Date: Mon, 2 Jun 2003 18:36:33 +0000 Subject: 2003-06-02 David Carlton * block.c (contained_in): Add 'const' to arguments. (block_function): Ditto. * block.h: Update declarations for block_function and contained_in. --- gdb/block.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/block.c') diff --git a/gdb/block.c b/gdb/block.c index 09c51b6..98b6ccb 100644 --- a/gdb/block.c +++ b/gdb/block.c @@ -44,7 +44,7 @@ static void block_initialize_namespace (struct block *block, Return zero otherwise. */ int -contained_in (struct block *a, struct block *b) +contained_in (const struct block *a, const struct block *b) { if (!a || !b) return 0; @@ -57,7 +57,7 @@ contained_in (struct block *a, struct block *b) lexical block, described by a struct block BL. */ struct symbol * -block_function (struct block *bl) +block_function (const struct block *bl) { while (BLOCK_FUNCTION (bl) == 0 && BLOCK_SUPERBLOCK (bl) != 0) bl = BLOCK_SUPERBLOCK (bl); -- cgit v1.1