summaryrefslogtreecommitdiff
path: root/auto.proto
diff options
context:
space:
mode:
Diffstat (limited to 'auto.proto')
-rw-r--r--auto.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/auto.proto b/auto.proto
index 7d5c0d0..9ed008e 100644
--- a/auto.proto
+++ b/auto.proto
@@ -64,8 +64,8 @@ message MsgName {
//
string name = 1; // the name of the message aka struct. for this example: "Shelf"
- bool marshal = 2; // if "Shelf" should have Marshal & Unmarshal functions
- bool mutex = 3; // an experiment to insert a mutex into the protoc generated msg struct (bad idea?)
+ bool doMarshal = 2; // if "Shelf" should have Marshal & Unmarshal functions
+ bool doMutex = 3; // an experiment to insert a mutex into the protoc generated msg struct (bad idea?)
repeated string sort = 4; // "Book", "Picture", etc
repeated string unique = 5; // if the fields should have AppendUnique() functions
}