Removed unused small.proto.

pull/13171/head
Joshua Haberman 4 years ago
parent 0f79d47215
commit 8e08282c3b
  1. 35
      benchmarks/small.proto

@ -1,35 +0,0 @@
// A small proto, for measuring the overhead of a minimal use of
// protocol buffers.
syntax = "proto3";
option optimize_for = LITE_RUNTIME;
option cc_enable_arenas = true;
package upb_benchmark;
message Person {
string name = 1;
int32 id = 2; // Unique ID number for this person.
string email = 3;
enum PhoneType {
MOBILE = 0;
HOME = 1;
WORK = 2;
}
message PhoneNumber {
string number = 1;
PhoneType type = 2;
}
repeated PhoneNumber phones = 4;
int64 last_updated = 5;
}
// Our address book file is just one of these.
message AddressBook {
repeated Person people = 1;
}
Loading…
Cancel
Save