diff options
author | Tom Tromey <tom@tromey.com> | 2023-02-01 08:25:40 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-02-13 15:22:20 -0700 |
commit | 8f4135314ae6e1a98a36295c85af5b246dfa00ff (patch) | |
tree | 24050f01f0db2db06cf62050245ccd5dda7f4856 | |
parent | 0d0f488e1dd2761d2681f13b318f6e3f5eb6a5e3 (diff) | |
download | gdb-8f4135314ae6e1a98a36295c85af5b246dfa00ff.zip gdb-8f4135314ae6e1a98a36295c85af5b246dfa00ff.tar.gz gdb-8f4135314ae6e1a98a36295c85af5b246dfa00ff.tar.bz2 |
Make struct value data members private
This hoists the 'private' in struct value to also encompass the data
members.
Approved-By: Simon Marchi <simon.marchi@efficios.com>
-rw-r--r-- | gdb/value.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gdb/value.h b/gdb/value.h index 225a3c8..7708530 100644 --- a/gdb/value.h +++ b/gdb/value.h @@ -609,6 +609,8 @@ public: in the history. The value is removed from the value chain. */ int record_latest (); +private: + /* Type of value; either not an lval, or one of the various different possible kinds of lval. */ enum lval_type m_lval = not_lval; @@ -785,8 +787,6 @@ public: loaded from the inferior. */ ULONGEST m_limited_length = 0; -private: - /* Allocate a value and its contents for type TYPE. If CHECK_SIZE is true, then apply the usual max-value-size checks. */ static struct value *allocate (struct type *type, bool check_size); @@ -806,15 +806,11 @@ private: return failure here, which will ultimately throw an error. */ bool set_limited_array_length (); -public: /* Temporary */ - /* Allocate the contents of this value if it has not been allocated yet. If CHECK_SIZE is true, then apply the usual max-value-size checks. */ void allocate_contents (bool check_size); -private: - /* Helper function for value_contents_eq. The only difference is that this function is bit rather than byte based. |