diff options
author | Tom Tromey <tom@tromey.com> | 2021-08-26 18:17:40 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2021-09-24 11:58:04 -0600 |
commit | 7ebaa5f7821682c40e79ee1fdfe43528b7d87376 (patch) | |
tree | e32d94cab5616bedf19aa1637eaea7e1c0df49fb /gdb/language.h | |
parent | 604386598d43e50f183aba65189354e04ffbdda3 (diff) | |
download | gdb-7ebaa5f7821682c40e79ee1fdfe43528b7d87376.zip gdb-7ebaa5f7821682c40e79ee1fdfe43528b7d87376.tar.gz gdb-7ebaa5f7821682c40e79ee1fdfe43528b7d87376.tar.bz2 |
Move value_true to value.h
I noticed that value_true is declared in language.h and defined in
language.c. However, as part of the value API, I think it would be
better in one of those files. And, because it is very short, I
changed it to be an inline function in value.h. I've also removed a
comment from the implementation, on the basis that it seems obsolete
-- if the change it suggests was needed, it probably would have been
done by now; and if it is needed in the future, odds are it would be
done differently anyway.
Finally, this patch also changes value_true and value_logical_not to
return a bool, and updates some uses.
Diffstat (limited to 'gdb/language.h')
-rw-r--r-- | gdb/language.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/language.h b/gdb/language.h index 63d64b5..cec3ab0 100644 --- a/gdb/language.h +++ b/gdb/language.h @@ -778,10 +778,6 @@ extern enum language set_language (enum language); extern void range_error (const char *, ...) ATTRIBUTE_PRINTF (1, 2); -/* Data: Does this value represent "truth" to the current language? */ - -extern int value_true (struct value *); - /* Misc: The string representing a particular enum language. */ extern enum language language_enum (const char *str); |