Skip to content

Commit

Permalink
uint64 -> uint32 for indices
Browse files Browse the repository at this point in the history
  • Loading branch information
petethepig committed Jul 6, 2023
1 parent 7faab0e commit a87c236
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ message AttributeSet {
}

message Sample {
repeated uint64 location_indices = 1;
repeated uint64 link_indices = 2;
repeated uint64 attribute_set_indices = 3;
repeated uint32 location_indices = 1;
repeated uint32 link_indices = 2;
repeated uint32 attribute_set_indices = 3;

// this one is repeated because there can be multiple profile kinds in one profile. Typical example is memory profiles in go that contain:
// * alloc_objects
Expand Down

0 comments on commit a87c236

Please sign in to comment.