python: Fix erroneous doc about gdb.objfiles()
[deliverable/binutils-gdb.git] / gdb / tracepoint.h
index 8bdad3567e91ae5b932a4ac52e2f6e24d5885915..c185672cc1b8d0f61e40a9fbe114c854218029d2 100644 (file)
@@ -292,8 +292,9 @@ public:
   { return m_computed; }
 
 private:
-  /* room for up to 256 regs */
-  unsigned char m_regs_mask[32];
+  /* We need the allocator zero-initialize the mask, so we don't use
+     gdb::byte_vector.  */
+  std::vector<unsigned char> m_regs_mask;
 
   std::vector<memrange> m_memranges;
 
This page took 0.027509 seconds and 4 git commands to generate.