码迷,mamicode.com
首页 > 编程语言 > 详细

解决proto文件转换时提示“Note that enum values use C++ scoping rules, meaning that enum values are siblings of their type, not children of it. ”

时间:2020-05-01 18:21:36      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:develop   开始   note   span   mes   strong   str   有一个   编码格式   

前言:

想将.proto文件转换成.pb文件时一直报错,一开始以为是文件编码格式的问题,后来将文件改成windows下的utf-8格式后,又出现了新的报错(见下图)。百度了很久,才找到解决方法。

技术图片

 

 

这个报错的意思是:“building_produce”在整个放pb文件的“WNet”文件夹中必须是唯一的,而不仅仅是在“open_case_type”这个menu中唯一。

所以说这个menu speed_up_target_type中的building_produce在其他地方(可能是这个proto文件中、也可能是整个文件夹中)有个同名的。

 

技术图片

 

 

果然搜索后发现有个message building_produce

 

技术图片

 

 

解决方法:

如果提示已经存在了,就将enum里的building_produce改个唯一的名字咯

谷歌官方文档里还有一个解决方法:

在这个enum中添加option allow_alias = true;

技术图片

 

 

具体的可以查看https://developers.google.com/protocol-buffers/docs/proto3

 

解决proto文件转换时提示“Note that enum values use C++ scoping rules, meaning that enum values are siblings of their type, not children of it. ”

标签:develop   开始   note   span   mes   strong   str   有一个   编码格式   

原文地址:https://www.cnblogs.com/lucio1128/p/12814032.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!