diff options
author | David Carlton <carlton@bactrian.org> | 2003-06-02 18:36:33 +0000 |
---|---|---|
committer | David Carlton <carlton@bactrian.org> | 2003-06-02 18:36:33 +0000 |
commit | 6b496efb759fc412aef56d877551b58a4dae8258 (patch) | |
tree | 4fb2e0193e4c3baf991eef6a55dd08b08cae63dd /gdb/block.c | |
parent | c5c6b35fb4fd9346678583a1a4666304950d6a97 (diff) | |
download | gdb-6b496efb759fc412aef56d877551b58a4dae8258.tar.gz |
2003-06-02 David Carlton <carlton@math.stanford.edu>
* block.c (contained_in): Add 'const' to arguments.
(block_function): Ditto.
* block.h: Update declarations for block_function and
contained_in.
Diffstat (limited to 'gdb/block.c')
-rw-r--r-- | gdb/block.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/block.c b/gdb/block.c index 09c51b69c47..98b6ccbb84b 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); |