aboutsummaryrefslogtreecommitdiff
path: root/tests/enum_to_string/enum.proto
diff options
context:
space:
mode:
Diffstat (limited to 'tests/enum_to_string/enum.proto')
-rw-r--r--tests/enum_to_string/enum.proto19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/enum_to_string/enum.proto b/tests/enum_to_string/enum.proto
deleted file mode 100644
index 07c6736..0000000
--- a/tests/enum_to_string/enum.proto
+++ /dev/null
@@ -1,19 +0,0 @@
-/* Test enum to string function generation */
-
-syntax = "proto2";
-
-import "nanopb.proto";
-
-option (nanopb_fileopt).enum_to_string = true;
-
-enum MyEnum {
- VALUE1 = 1;
- VALUE2 = 2;
- VALUE15 = 15;
-}
-
-enum MyShortNameEnum {
- option (nanopb_enumopt).long_names = false;
- MSNE_VALUE256 = 256;
-}
-