aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/block.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/block.h b/gdb/block.h
index 7c40bae..32e3c9e 100644
--- a/gdb/block.h
+++ b/gdb/block.h
@@ -271,6 +271,12 @@ struct block : public allocate_on_obstack
struct dynamic_prop *static_link () const;
+private:
+
+ /* If the namespace_info is NULL, allocate it via OBSTACK and
+ initialize its members to zero. */
+ void initialize_namespace (struct obstack *obstack);
+
/* Addresses in the executable code that are in this block. */
CORE_ADDR m_start = 0;
@@ -303,12 +309,6 @@ struct block : public allocate_on_obstack
startaddr and endaddr above. */
struct blockranges *m_ranges = nullptr;
-
-private:
-
- /* If the namespace_info is NULL, allocate it via OBSTACK and
- initialize its members to zero. */
- void initialize_namespace (struct obstack *obstack);
};
/* The global block is singled out so that we can provide a back-link