clayborg added a comment.

I would almost rather change the GetNumChildren() to take a "max" param:

  class SBValue
  {
       uint32_t
       GetNumChildren ();
       uint32_t
       GetNumChildren (uint32_t max = UINT32_MAX);
  };

We need to keep the other one so that our public API still has the old call, 
but the second version could limit the number of children to verify to at most 
"max".


http://reviews.llvm.org/D13778



_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to