diff options
Diffstat (limited to 'gdb/c-exp.y')
-rw-r--r-- | gdb/c-exp.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/c-exp.y b/gdb/c-exp.y index 11eaadb..05d12be 100644 --- a/gdb/c-exp.y +++ b/gdb/c-exp.y @@ -2699,7 +2699,7 @@ static struct obstack name_obstack; in which lookups start; this can be NULL to mean the global scope. */ static int -classify_name (struct block *block) +classify_name (const struct block *block) { struct symbol *sym; char *copy; @@ -2791,7 +2791,7 @@ classify_name (struct block *block) in `yylval' is the first component of a name, false otherwise. */ static int -classify_inner_name (struct block *block, int first_name) +classify_inner_name (const struct block *block, int first_name) { struct type *type, *new_type; char *copy; |